155270cd9b5a87bfc4b9da0ed9cea0469d73b0ab
[ccsdk/cds.git] / ms / blueprintsprocessor / functions / resource-resolution / src / main / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / functions / resource / resolution / db / ResourceResolutionRepository.kt
1 /*
2  * Copyright (C) 2019 Bell Canada.
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 package org.onap.ccsdk.cds.blueprintsprocessor.functions.resource.resolution.db
17
18 import org.springframework.data.jpa.repository.JpaRepository
19
20 interface ResourceResolutionRepository : JpaRepository<ResourceResolution, String> {
21
22     fun findByResolutionKeyAndBlueprintNameAndBlueprintVersionAndArtifactNameAndName(
23         key: String,
24         blueprintName: String?,
25         blueprintVersion: String?,
26         artifactName: String,
27         name: String
28     ): ResourceResolution
29
30     fun findByResolutionKeyAndBlueprintNameAndBlueprintVersionAndArtifactName(
31         resolutionKey: String,
32         blueprintName: String,
33         blueprintVersion: String,
34         artifactPrefix: String
35     ): List<ResourceResolution>
36
37     fun findByBlueprintNameAndBlueprintVersionAndResourceIdAndResourceType(
38         blueprintName: String,
39         blueprintVersion: String,
40         resourceId: String,
41         resourceType: String
42     ): List<ResourceResolution>
43
44     fun findByBlueprintNameAndBlueprintVersionAndArtifactNameAndResolutionKeyAndOccurrence(
45         blueprintName: String?,
46         blueprintVersion: String?,
47         artifactName: String,
48         resolutionKey: String,
49         occurrence: Int
50     ): List<ResourceResolution>
51
52     fun findByBlueprintNameAndBlueprintVersionAndArtifactNameAndResourceIdAndResourceTypeAndOccurrence(
53         blueprintName: String?,
54         blueprintVersion: String?,
55         artifactName: String,
56         resourceId: String,
57         resourceType: String,
58         occurrence: Int
59     ): List<ResourceResolution>
60 }