bf77af66c30a4067871fe80048c5890ef79e7e0a
[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.controllerblueprints.service.repository
18
19 import org.onap.ccsdk.cds.controllerblueprints.service.domain.BlueprintModelSearch
20 import org.springframework.data.jpa.repository.JpaRepository
21 import org.springframework.stereotype.Repository
22 import java.util.*
23
24 /**
25  * ControllerBlueprintModelSearchRepository.java Purpose: Provide Configuration Generator AsdcArtifactsRepository
26  *
27  * @author Brinda Santh
28  * @version 1.0
29  */
30 @Repository
31 interface ControllerBlueprintModelSearchRepository : JpaRepository<BlueprintModelSearch, Long> {
32
33     /**
34      * This is a findById method
35      *
36      * @param id id
37      * @return Optional<BlueprintModelSearch>
38     </BlueprintModelSearch> */
39     fun findById(id: String): Optional<BlueprintModelSearch>
40
41     /**
42      * This is a findAll method
43      * @return List<BlueprintModelSearch>
44     </BlueprintModelSearch> */
45     override fun findAll(): List<BlueprintModelSearch>
46
47     /**
48      * This is a findByArtifactNameAndArtifactVersion method
49      *
50      * @param artifactName artifactName
51      * @param artifactVersion artifactVersion
52      * @return Optional<AsdcArtifacts>
53     </AsdcArtifacts> */
54     fun findByArtifactNameAndArtifactVersion(artifactName: String, artifactVersion: String): Optional<BlueprintModelSearch>
55
56     /**
57      * This is a findByTagsContainingIgnoreCase method
58      *
59      * @param tags
60      * @return Optional<BlueprintModelSearch>
61     </BlueprintModelSearch> */
62     fun findByTagsContainingIgnoreCase(tags: String): List<BlueprintModelSearch>
63 }