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