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 org.jetbrains.annotations.NotNull
21 import org.onap.ccsdk.cds.blueprintsprocessor.db.primary.domain.BlueprintModel
22 import org.springframework.data.jpa.repository.JpaRepository
23 import org.springframework.stereotype.Repository
24 import java.util.Optional
25 import javax.transaction.Transactional
31 interface BlueprintModelRepository : JpaRepository<BlueprintModel, String> {
34 * This is a findById method
39 override fun findById(id: String): Optional<BlueprintModel>
42 * This is a findByArtifactNameAndArtifactVersion method
44 * @param artifactName artifactName
45 * @param artifactVersion artifactVersion
48 fun findByArtifactNameAndArtifactVersion(artifactName: String, artifactVersion: String): BlueprintModel?
51 * This is a findTopByArtifactNameOrderByArtifactIdDesc method
53 * @param artifactName artifactName
56 fun findTopByArtifactNameOrderByArtifactVersionDesc(artifactName: String): BlueprintModel?
59 * This is a findTopByArtifactName method
61 * @param artifactName artifactName
64 fun findTopByArtifactName(artifactName: String): List<BlueprintModel>
67 * This is a findByTagsContainingIgnoreCase method
72 fun findByTagsContainingIgnoreCase(tags: String): List<BlueprintModel>
75 * This is a deleteByArtifactNameAndArtifactVersion method
77 * @param artifactName artifactName
78 * @param artifactVersion artifactVersion
81 fun deleteByArtifactNameAndArtifactVersion(artifactName: String, artifactVersion: String)
84 * This is a deleteById method
88 override fun deleteById(@NotNull id: String)