a7891f6a7235d2f39516d64fe8680f414c376fb5
[ccsdk/cds.git] /
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  * Modifications Copyright © 2019 Bell Canada.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 package org.onap.ccsdk.cds.blueprintsprocessor.db.primary.repository
19
20 import org.jetbrains.annotations.NotNull
21 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.domain.BlueprintModel
22 import org.springframework.data.jpa.repository.JpaRepository
23 import org.springframework.stereotype.Repository
24 import java.util.Optional
25 import javax.transaction.Transactional
26
27 /**
28  * @param <T> Model
29  */
30 @Repository
31 interface BlueprintModelRepository : JpaRepository<BlueprintModel, String> {
32
33     /**
34      * This is a findById method
35      *
36      * @param id id
37      * @return Optional<T>
38      */
39     override fun findById(id: String): Optional<BlueprintModel>
40
41     /**
42      * This is a findByArtifactNameAndArtifactVersion method
43      *
44      * @param artifactName artifactName
45      * @param artifactVersion artifactVersion
46      * @return T?
47      */
48     fun findByArtifactNameAndArtifactVersion(artifactName: String, artifactVersion: String): BlueprintModel?
49
50     /**
51      * This is a findTopByArtifactNameOrderByArtifactIdDesc method
52      *
53      * @param artifactName artifactName
54      * @return T?
55      */
56     fun findTopByArtifactNameOrderByArtifactVersionDesc(artifactName: String): BlueprintModel?
57
58     /**
59      * This is a findTopByArtifactName method
60      *
61      * @param artifactName artifactName
62      * @return List<T>
63      */
64     fun findTopByArtifactName(artifactName: String): List<BlueprintModel>
65
66     /**
67      * This is a findByTagsContainingIgnoreCase method
68      *
69      * @param tags tags
70      * @return List<T>
71      */
72     fun findByTagsContainingIgnoreCase(tags: String): List<BlueprintModel>
73
74     /**
75      * This is a deleteByArtifactNameAndArtifactVersion method
76      *
77      * @param artifactName artifactName
78      * @param artifactVersion artifactVersion
79      */
80     @Transactional
81     fun deleteByArtifactNameAndArtifactVersion(artifactName: String, artifactVersion: String)
82
83     /**
84      * This is a deleteById method
85      *
86      * @param id id
87      */
88     override fun deleteById(@NotNull id: String)
89 }