c31f009a6f58c3c49bfa1e89746a7cfcb7570665
[ccsdk/apps.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.apps.controllerblueprints.db.resources.repository
19
20 import org.jetbrains.annotations.NotNull
21 import java.util.Optional
22 import org.springframework.data.jpa.repository.JpaRepository
23 import org.springframework.data.repository.NoRepositoryBean
24
25 /**
26  * @param <T> Model
27  */
28 @NoRepositoryBean
29 interface ModelRepository<T> : JpaRepository<T, String> {
30
31     /**
32      * This is a findById method
33      *
34      * @param id id
35      * @return Optional<T>
36      */
37     @NotNull
38     override fun findById(@NotNull id: String): Optional<T>
39
40     /**
41      * This is a findByArtifactNameAndArtifactVersion method
42      *
43      * @param artifactName artifactName
44      * @param artifactVersion artifactVersion
45      * @return Optional<T>
46      */
47     fun findByArtifactNameAndArtifactVersion(artifactName: String, artifactVersion: String): Optional<T>
48
49     /**
50      * This is a findTopByArtifactNameOrderByArtifactIdDesc method
51      *
52      * @param artifactName artifactName
53      * @return Optional<T>
54      */
55     fun findTopByArtifactNameOrderByArtifactVersionDesc(artifactName: String): Optional<T>
56
57     /**
58      * This is a findTopByArtifactName method
59      *
60      * @param artifactName artifactName
61      * @return Optional<T>
62      */
63     fun findTopByArtifactName(artifactName: String): List<T>
64
65     /**
66      * This is a findByTagsContainingIgnoreCase method
67      *
68      * @param tags tags
69      * @return Optional<ModelType>
70      */
71     fun findByTagsContainingIgnoreCase(tags: String): List<T>
72
73     /**
74      * This is a deleteByArtifactNameAndArtifactVersion method
75      *
76      * @param artifactName artifactName
77      * @param artifactVersion artifactVersion
78      */
79     fun deleteByArtifactNameAndArtifactVersion(artifactName: String, artifactVersion: String)
80
81     /**
82      * This is a deleteById method
83      *
84      * @param id id
85      */
86     override fun deleteById(@NotNull id: String)
87
88 }