a6f0da1cce46ea0dcae197d313ece88bda4e3396
[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.data.jpa.repository.Query
24 import org.springframework.data.repository.query.Param
25 import org.springframework.stereotype.Repository
26 import java.util.Optional
27 import javax.transaction.Transactional
28
29 /**
30  * @param <T> Model
31  */
32 @Repository
33 interface BlueprintModelRepository : JpaRepository<BlueprintModel, String> {
34
35     /**
36      * This is a findById method
37      *
38      * @param id id
39      * @return Optional<T>
40      */
41     override fun findById(id: String): Optional<BlueprintModel>
42
43     /**
44      * This is a findByArtifactNameAndArtifactVersion method
45      *
46      * @param artifactName artifactName
47      * @param artifactVersion artifactVersion
48      * @return T?
49      */
50     fun findByArtifactNameAndArtifactVersion(artifactName: String, artifactVersion: String): BlueprintModel?
51
52     /**
53      *  Find the Blueprint UUID (blueprint_model_id) for a given artifactName/Version
54      *
55      * @param artifactName artifactName
56      * @param artifactVersion artifactVersion
57      * @return String?
58      */
59     @Query("SELECT m.id FROM BlueprintModel m WHERE m.artifactName = :artifactName AND m.artifactVersion = :artifactVersion")
60     fun findIdByArtifactNameAndArtifactVersion(@Param("artifactName") artifactName: String, @Param("artifactVersion") artifactVersion: String): String?
61
62     /**
63      * This is a findTopByArtifactNameOrderByArtifactIdDesc method
64      *
65      * @param artifactName artifactName
66      * @return T?
67      */
68     fun findTopByArtifactNameOrderByArtifactVersionDesc(artifactName: String): BlueprintModel?
69
70     /**
71      * This is a findTopByArtifactName method
72      *
73      * @param artifactName artifactName
74      * @return List<T>
75      */
76     fun findTopByArtifactName(artifactName: String): List<BlueprintModel>
77
78     /**
79      * This is a findByTagsContainingIgnoreCase method
80      *
81      * @param tags tags
82      * @return List<T>
83      */
84     fun findByTagsContainingIgnoreCase(tags: String): List<BlueprintModel>
85
86     /**
87      * This is a deleteByArtifactNameAndArtifactVersion method
88      *
89      * @param artifactName artifactName
90      * @param artifactVersion artifactVersion
91      */
92     @Transactional
93     fun deleteByArtifactNameAndArtifactVersion(artifactName: String, artifactVersion: String)
94
95     /**
96      * This is a deleteById method
97      *
98      * @param id id
99      */
100     override fun deleteById(@NotNull id: String)
101 }