Additional validation for names/identifiers
[cps.git] / cps-service / src / main / java / org / onap / cps / api / CpsModuleService.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2020-2022 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.Collection;
25 import java.util.Map;
26 import org.onap.cps.spi.CascadeDeleteAllowed;
27 import org.onap.cps.spi.exceptions.DataInUseException;
28 import org.onap.cps.spi.model.ModuleReference;
29 import org.onap.cps.spi.model.SchemaSet;
30
31 /**
32  * Responsible for managing module sets.
33  */
34 public interface CpsModuleService {
35
36     /**
37      * Create schema set.
38      *
39      * @param dataspaceName                 dataspace name
40      * @param schemaSetName                 schema set name
41      * @param yangResourcesNameToContentMap yang resources (files) as a mep where key is resource name
42      *                                      and value is content
43      */
44     void createSchemaSet(String dataspaceName, String schemaSetName,
45                          Map<String, String> yangResourcesNameToContentMap);
46
47     /**
48      * Create a schema set from new modules and existing modules.
49      * @param dataspaceName             Dataspace name
50      * @param schemaSetName             schema set name
51      * @param newModuleNameToContentMap YANG resources map where key is a module name and value is content
52      * @param moduleReferences          List of YANG resources module references of the modules
53      */
54     void createSchemaSetFromModules(String dataspaceName, String schemaSetName,
55                                     Map<String, String> newModuleNameToContentMap,
56                                     Collection<ModuleReference> moduleReferences);
57
58     /**
59      * Read schema set in the given dataspace.
60      *
61      * @param dataspaceName dataspace name
62      * @param schemaSetName schema set name
63      * @return a SchemaSet
64      */
65     SchemaSet getSchemaSet(String dataspaceName, String schemaSetName);
66
67     /**
68      * Deletes Schema Set.
69      *
70      * @param dataspaceName        dataspace name
71      * @param schemaSetName        schema set name
72      * @param cascadeDeleteAllowed indicates the allowance to remove associated anchors and data if exist
73      * @throws DataInUseException if cascadeDeleteAllowed is set to CASCADE_DELETE_PROHIBITED and there
74      *                           is associated anchor record exists in database
75      */
76     void deleteSchemaSet(String dataspaceName, String schemaSetName,
77                          CascadeDeleteAllowed cascadeDeleteAllowed);
78
79     /**
80      * Retrieve module references for the given dataspace name.
81      *
82      * @param dataspaceName        dataspace name
83      * @return a list of ModuleReference objects
84      */
85     Collection<ModuleReference> getYangResourceModuleReferences(String dataspaceName);
86
87     /**
88      * Retrieve module references for the given dataspace name and anchor name.
89      *
90      * @param dataspaceName dataspace name
91      * @param anchorName    anchor name
92      * @return a list of ModuleReference objects
93      */
94     Collection<ModuleReference> getYangResourcesModuleReferences(String dataspaceName, String anchorName);
95
96     /**
97      * Identify previously unknown Yang Resource module references.
98      * The system will ignore the namespace of all module references.
99      *
100      * @param moduleReferencesToCheck the moduleReferencesToCheck
101      * @returns collection of module references (namespace will be always blank)
102      */
103     Collection<ModuleReference> identifyNewModuleReferences(
104         Collection<ModuleReference> moduleReferencesToCheck);
105
106 }