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.cds.blueprintsprocessor.db.primary.repository
20 import com.fasterxml.jackson.databind.JsonNode
21 import org.jetbrains.annotations.NotNull
22 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.domain.BlueprintModel
23 import org.springframework.data.jpa.repository.JpaRepository
24 import org.springframework.data.jpa.repository.Query
25 import org.springframework.data.repository.query.Param
26 import org.springframework.stereotype.Repository
27 import java.util.Optional
28 import javax.transaction.Transactional
34 interface BlueprintModelRepository : JpaRepository<BlueprintModel, String> {
37 * This is a findById method
42 override fun findById(id: String): Optional<BlueprintModel>
45 * This is a findByArtifactNameAndArtifactVersion method
47 * @param artifactName artifactName
48 * @param artifactVersion artifactVersion
51 fun findByArtifactNameAndArtifactVersion(artifactName: String, artifactVersion: String): BlueprintModel?
54 * Find the Blueprint UUID (blueprint_model_id) for a given artifactName/Version
56 * @param artifactName artifactName
57 * @param artifactVersion artifactVersion
60 @Query("SELECT m.id FROM BlueprintModel m WHERE m.artifactName = :artifactName AND m.artifactVersion = :artifactVersion")
61 fun findIdByArtifactNameAndArtifactVersion(@Param("artifactName") artifactName: String, @Param("artifactVersion") artifactVersion: String): String?
64 * Find the workflows for a given blueprint name/version
65 * @param artifactName artifactName
66 * @param artifactVersion artifactVersion
69 @Query("SELECT m.workflows from BlueprintModel m WHERE m.artifactName = :artifactName AND m.artifactVersion = :artifactVersion")
70 fun findWorkflowsByArtifactNameAndArtifactVersion(@Param("artifactName") artifactName: String, @Param("artifactVersion") artifactVersion: String): JsonNode?
73 * This is a findTopByArtifactNameOrderByArtifactIdDesc method
75 * @param artifactName artifactName
78 fun findTopByArtifactNameOrderByArtifactVersionDesc(artifactName: String): BlueprintModel?
81 * This is a findTopByArtifactName method
83 * @param artifactName artifactName
86 fun findTopByArtifactName(artifactName: String): List<BlueprintModel>
89 * This is a findByTagsContainingIgnoreCase method
94 fun findByTagsContainingIgnoreCase(tags: String): List<BlueprintModel>
97 * This is a deleteByArtifactNameAndArtifactVersion method
99 * @param artifactName artifactName
100 * @param artifactVersion artifactVersion
103 fun deleteByArtifactNameAndArtifactVersion(artifactName: String, artifactVersion: String)
106 * This is a deleteById method
110 override fun deleteById(@NotNull id: String)