2 * Copyright © 2017-2018 AT&T Intellectual Property.
3 * Modifications Copyright © 2019 Bell Canada.
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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 package org.onap.ccsdk.apps.controllerblueprints.db.resources.repository
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
27 * @param <B> ModelContent
30 interface ModelContentRepository<T, B> : JpaRepository<B, String> {
33 * This is a findById method
39 override fun findById(@NotNull id: String): Optional<B>
42 * This is a findTopByBlueprintModelAndContentType method
44 * @param blueprintModel blueprintModel
45 * @param contentType contentType
48 fun findTopByBlueprintModelAndContentType(blueprintModel: T,
49 contentType: String): Optional<B>
52 * This is a findByBlueprintModelAndContentType method
54 * @param blueprintModel blueprintModel
55 * @param contentType contentType
56 * @return Optional<BlueprintModelContent>
58 fun findByBlueprintModelAndContentType(blueprintModel: T, contentType: String): List<B>
61 * This is a findByBlueprintModel method
63 * @param blueprintModel B
66 fun findByBlueprintModel(blueprintModel: T): List<B>
69 * This is a findByBlueprintModelAndContentTypeAndName method
71 * @param blueprintModel blueprintModel
72 * @param contentType contentType
76 fun findByBlueprintModelAndContentTypeAndName(blueprintModel: T,
77 contentType: String, name: String): Optional<B>
80 * This is a deleteByMdeleteByBlueprintModelodelName method
82 * @param blueprintModel B
84 fun deleteByBlueprintModel(blueprintModel: T)
87 * This is a deleteById method
91 override fun deleteById(@NotNull id: String)