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.blueprintsprocessor.db.primary.repository
19 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.domain.BlueprintModelSearch
20 import org.springframework.data.jpa.repository.JpaRepository
21 import org.springframework.stereotype.Repository
24 * Provide Configuration Generator AsdcArtifactsRepository
26 * @author Brinda Santh
30 interface BlueprintModelSearchRepository : JpaRepository<BlueprintModelSearch, Long> {
33 * This is a findById method
36 * @return Optional<BlueprintModelSearch>
37 </BlueprintModelSearch> */
38 fun findById(id: String): BlueprintModelSearch?
41 * This is a findAll method
42 * @return List<BlueprintModelSearch>
43 </BlueprintModelSearch> */
44 override fun findAll(): List<BlueprintModelSearch>
47 * This is a findByArtifactNameAndArtifactVersion method
49 * @param artifactName artifactName
50 * @param artifactVersion artifactVersion
51 * @return Optional<AsdcArtifacts>
53 fun findByArtifactNameAndArtifactVersion(artifactName: String, artifactVersion: String): BlueprintModelSearch?
56 * This is a findByTagsContainingIgnoreCase method
59 * @return Optional<BlueprintModelSearch>
60 </BlueprintModelSearch> */
61 fun findByTagsContainingIgnoreCase(tags: String): List<BlueprintModelSearch>