4965677ef0fa06ef85eb3d79f270c20ab313ff3f
[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.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  * @param <B> ModelContent
28  */
29 @NoRepositoryBean
30 interface ModelContentRepository<T, B> : JpaRepository<B, String> {
31
32     /**
33      * This is a findById method
34      *
35      * @param id id
36      * @return Optional<T>
37      */
38     @NotNull
39     override fun findById(@NotNull id: String): Optional<B>
40
41     /**
42      * This is a findTopByBlueprintModelAndContentType method
43      *
44      * @param blueprintModel blueprintModel
45      * @param contentType contentType
46      * @return Optional<B>
47      */
48     fun findTopByBlueprintModelAndContentType(blueprintModel: T,
49                                               contentType: String): Optional<B>
50
51     /**
52      * This is a findByBlueprintModelAndContentType method
53      *
54      * @param blueprintModel blueprintModel
55      * @param contentType contentType
56      * @return Optional<BlueprintModelContent>
57      */
58     fun findByBlueprintModelAndContentType(blueprintModel: T, contentType: String): List<B>
59
60     /**
61      * This is a findByBlueprintModel method
62      *
63      * @param blueprintModel B
64      * @return Optional<T>
65      */
66     fun findByBlueprintModel(blueprintModel: T): List<B>
67
68     /**
69      * This is a findByBlueprintModelAndContentTypeAndName method
70      *
71      * @param blueprintModel blueprintModel
72      * @param contentType contentType
73      * @param name name
74      * @return Optional<B>
75      */
76     fun findByBlueprintModelAndContentTypeAndName(blueprintModel: T,
77                                                   contentType: String, name: String): Optional<B>
78
79     /**
80      * This is a deleteByMdeleteByBlueprintModelodelName method
81      *
82      * @param blueprintModel B
83      */
84     fun deleteByBlueprintModel(blueprintModel: T)
85
86     /**
87      * This is a deleteById method
88      *
89      * @param id id
90      */
91     override fun deleteById(@NotNull id: String)
92
93 }