f5ef0740ea4cc9cf143f9d5119115af7c67de007
[ccsdk/cds.git] /
1 /*
2  *  Copyright © 2019 IBM.
3  *
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
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 package org.onap.ccsdk.cds.blueprintsprocessor.db.primary.repository
18
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
22
23 /**
24  * Provide Configuration Generator AsdcArtifactsRepository
25  *
26  * @author Brinda Santh
27  * @version 1.0
28  */
29 @Repository
30 interface BlueprintModelSearchRepository : JpaRepository<BlueprintModelSearch, Long> {
31
32     /**
33      * This is a findById method
34      *
35      * @param id id
36      * @return Optional<BlueprintModelSearch>
37     </BlueprintModelSearch> */
38     fun findById(id: String): BlueprintModelSearch?
39
40     /**
41      * This is a findAll method
42      * @return List<BlueprintModelSearch>
43     </BlueprintModelSearch> */
44     override fun findAll(): List<BlueprintModelSearch>
45
46     /**
47      * This is a findByArtifactNameAndArtifactVersion method
48      *
49      * @param artifactName artifactName
50      * @param artifactVersion artifactVersion
51      * @return Optional<AsdcArtifacts>
52     </AsdcArtifacts> */
53     fun findByArtifactNameAndArtifactVersion(artifactName: String, artifactVersion: String): BlueprintModelSearch?
54
55     /**
56      * This is a findByTagsContainingIgnoreCase method
57      *
58      * @param tags
59      * @return Optional<BlueprintModelSearch>
60     </BlueprintModelSearch> */
61     fun findByTagsContainingIgnoreCase(tags: String): List<BlueprintModelSearch>
62 }