Merge "Creating findOneBluePrintModel (configuration)"
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / designer-api / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / designer / api / repository / ResourceDictionaryRepository.kt
1 /*
2  *  Copyright © 2019 IBM.
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  */
16
17 package org.onap.ccsdk.cds.blueprintsprocessor.designer.api.repository
18
19 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.domain.ResourceDictionary
20 import org.springframework.data.jpa.repository.JpaRepository
21 import org.springframework.stereotype.Repository
22
23 /**
24  * ResourceMappingRepository.java Purpose: Provide Configuration Generator ResourceMappingRepository
25  *
26  * @author Brinda Santh
27  * @version 1.0
28  */
29 @Repository
30 interface ResourceDictionaryRepository : JpaRepository<ResourceDictionary, String> {
31
32     /**
33      * This is a findByName method
34      *
35      * @param name name
36      * @return Optional<ResourceMapping>
37     </ResourceMapping> */
38     fun findByName(name: String): ResourceDictionary?
39
40     /**
41      * This is a findByNameIn method
42      *
43      * @param names names
44      * @return Optional<ResourceMapping>
45     </ResourceMapping> */
46     fun findByNameIn(names: List<String>): List<ResourceDictionary>
47
48     /**
49      * This is a findByTagsContainingIgnoreCase method
50      *
51      * @param tags tags
52      * @return Optional<ModelType>
53     </ModelType> */
54     fun findByTagsContainingIgnoreCase(tags: String): List<ResourceDictionary>
55
56     /**
57      * This is a deleteByName method
58      *
59      * @param name name
60      */
61     fun deleteByName(name: String)
62 }