104ac4f3f63d13752e21dfa818b7bf48c39816f2
[cps.git] / cps-service / src / main / java / org / onap / cps / spi / CpsAdminPersistenceService.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation.
4  *  Modifications Copyright (C) 2020 Bell Canada.
5  *  Modifications Copyright (C) 2021 Pantheon.tech
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.cps.spi;
24
25 import java.util.Collection;
26 import org.checkerframework.checker.nullness.qual.NonNull;
27 import org.onap.cps.spi.exceptions.AlreadyDefinedException;
28 import org.onap.cps.spi.model.Anchor;
29
30 /*
31     Service for handling CPS admin data.
32  */
33 public interface CpsAdminPersistenceService {
34
35     /**
36      * Create dataspace.
37      *
38      * @param dataspaceName dataspace name
39      * @throws AlreadyDefinedException if dataspace with same name already exists
40      */
41     void createDataspace(@NonNull String dataspaceName);
42
43     /**
44      * Create an Anchor.
45      *
46      * @param dataspaceName dataspace name
47      * @param schemaSetName schema set name
48      * @param anchorName    anchor name
49      */
50     void createAnchor(@NonNull String dataspaceName, @NonNull String schemaSetName, @NonNull String anchorName);
51
52     /**
53      * Read all anchors in the given a dataspace.
54      *
55      * @param dataspaceName dataspace name
56      * @return a collection of anchors
57      */
58     @NonNull
59     Collection<Anchor> getAnchors(@NonNull String dataspaceName);
60
61     /**
62      * Query anchor names for the given module names in the provided dataspace.
63      *
64      *
65      * @param dataspaceName dataspace name
66      * @param moduleNames a collection of module names
67      * @return a collection of anchor names in the given dataspace. The schema set for each anchor must include all the
68      *         given module names
69      */
70     Collection<Anchor> queryAnchors(String dataspaceName, Collection<String> moduleNames);
71
72     /**
73      * Get an anchor in the given dataspace using the anchor name.
74      *
75      * @param dataspaceName dataspace name
76      * @param anchorName anchor name
77      * @return an anchor
78      */
79     @NonNull
80     Anchor getAnchor(@NonNull String dataspaceName, @NonNull String anchorName);
81
82     /**
83      * Delete anchor by name in given dataspace.
84      *
85      * @param dataspaceName dataspace name
86      * @param anchorName anchor name
87      */
88     void deleteAnchor(@NonNull String dataspaceName, @NonNull String anchorName);
89 }