Update versions for London
[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.data.jpa.repository.Query
22 import org.springframework.stereotype.Repository
23
24 /**
25  * ResourceMappingRepository.java Purpose: Provide Configuration Generator ResourceMappingRepository
26  *
27  * @author Brinda Santh
28  * @version 1.0
29  */
30 @Repository
31 interface ResourceDictionaryRepository : JpaRepository<ResourceDictionary, String> {
32
33     /**
34      * This is a findByName method
35      *
36      * @param name name
37      * @return Optional<ResourceMapping>
38      </ResourceMapping> */
39     fun findByName(name: String): ResourceDictionary?
40
41     /**
42      * This is a findByNameIn method
43      *
44      * @param names names
45      * @return Optional<ResourceMapping>
46      </ResourceMapping> */
47     fun findByNameIn(names: List<String>): List<ResourceDictionary>
48
49     /**
50      * This is a findByTagsContainingIgnoreCase method
51      *
52      * @param tags tags
53      * @return Optional<ModelType>
54      </ModelType> */
55     fun findByTagsContainingIgnoreCase(tags: String): List<ResourceDictionary>
56
57     /**
58      * This is a deleteByName method
59      *
60      * @param name name
61      */
62     fun deleteByName(name: String)
63
64     /**
65      *this method for getting resource dictionary group distinct
66      * (Dictionary library instances)
67      *
68      * */
69     @Query("SELECT distinct resourceDictionary.resourceDictionaryGroup FROM ResourceDictionary resourceDictionary")
70     fun findDistinctByResourceDictionaryGroup(): List<String>
71 }