2 * Copyright © 2019 IBM.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package org.onap.ccsdk.cds.controllerblueprints.service.repository
19 import org.onap.ccsdk.cds.controllerblueprints.service.domain.BlueprintModelSearch
20 import org.springframework.data.jpa.repository.JpaRepository
21 import org.springframework.stereotype.Repository
25 * ControllerBlueprintModelSearchRepository.java Purpose: Provide Configuration Generator AsdcArtifactsRepository
27 * @author Brinda Santh
31 interface ControllerBlueprintModelSearchRepository : JpaRepository<BlueprintModelSearch, Long> {
34 * This is a findById method
37 * @return Optional<BlueprintModelSearch>
38 </BlueprintModelSearch> */
39 fun findById(id: String): Optional<BlueprintModelSearch>
42 * This is a findAll method
43 * @return List<BlueprintModelSearch>
44 </BlueprintModelSearch> */
45 override fun findAll(): List<BlueprintModelSearch>
48 * This is a findByArtifactNameAndArtifactVersion method
50 * @param artifactName artifactName
51 * @param artifactVersion artifactVersion
52 * @return Optional<AsdcArtifacts>
54 fun findByArtifactNameAndArtifactVersion(artifactName: String, artifactVersion: String): Optional<BlueprintModelSearch>
57 * This is a findByTagsContainingIgnoreCase method
60 * @return Optional<BlueprintModelSearch>
61 </BlueprintModelSearch> */
62 fun findByTagsContainingIgnoreCase(tags: String): List<BlueprintModelSearch>