Merge "Issue with CPSData API to add an item to an existing list node"
[cps.git] / cps-service / src / main / java / org / onap / cps / api / CpsModuleService.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation
4  *  Modifications Copyright (C) 2020-2021 Pantheon.tech
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  *  ============LICENSE_END=========================================================
20  */
21
22 package org.onap.cps.api;
23
24 import java.util.List;
25 import java.util.Map;
26 import org.checkerframework.checker.nullness.qual.NonNull;
27 import org.onap.cps.spi.CascadeDeleteAllowed;
28 import org.onap.cps.spi.exceptions.DataInUseException;
29 import org.onap.cps.spi.model.ModuleReference;
30 import org.onap.cps.spi.model.SchemaSet;
31
32 /**
33  * Responsible for managing module sets.
34  */
35 public interface CpsModuleService {
36
37     /**
38      * Create schema set.
39      *
40      * @param dataspaceName                 dataspace name
41      * @param schemaSetName                 schema set name
42      * @param yangResourcesNameToContentMap yang resources (files) as a mep where key is resource name
43      *                                      and value is content
44      */
45     void createSchemaSet(@NonNull String dataspaceName, @NonNull String schemaSetName,
46                          @NonNull Map<String, String> yangResourcesNameToContentMap);
47
48     /**
49      * Read schema set in the given dataspace.
50      *
51      * @param dataspaceName dataspace name
52      * @param schemaSetName schema set name
53      * @return a SchemaSet
54      */
55     SchemaSet getSchemaSet(@NonNull String dataspaceName, @NonNull String schemaSetName);
56
57     /**
58      * Deletes Schema Set.
59      *
60      * @param dataspaceName        dataspace name
61      * @param schemaSetName        schema set name
62      * @param cascadeDeleteAllowed indicates the allowance to remove associated anchors and data if exist
63      * @throws DataInUseException if cascadeDeleteAllowed is set to CASCADE_DELETE_PROHIBITED and there
64      *                           is associated anchor record exists in database
65      */
66     void deleteSchemaSet(@NonNull String dataspaceName, @NonNull String schemaSetName,
67         @NonNull CascadeDeleteAllowed cascadeDeleteAllowed);
68
69     /**
70      * Retrieve all modules and revisions known by CPS for all Yang Resources.
71      *
72      * @return a list of ModuleReference objects
73      */
74     List<ModuleReference> getAllYangResourcesModuleReferences();
75 }