5bde801188471df2861591b70f5a6de20a132b4c
[sdc.git] / openecomp-be / lib / openecomp-sdc-vendor-software-product-lib / openecomp-sdc-vendor-software-product-api / src / main / java / org / openecomp / sdc / vendorsoftwareproduct / services / composition / CompositionEntityDataManager.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.vendorsoftwareproduct.services.composition;
22
23 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.ComponentEntity;
24 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.CompositionEntity;
25 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.NetworkEntity;
26 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.NicEntity;
27 import org.openecomp.sdc.vendorsoftwareproduct.types.composition.Component;
28 import org.openecomp.sdc.vendorsoftwareproduct.types.composition.CompositionData;
29 import org.openecomp.sdc.vendorsoftwareproduct.types.composition.CompositionEntityId;
30 import org.openecomp.sdc.vendorsoftwareproduct.types.composition.CompositionEntityValidationData;
31 import org.openecomp.sdc.vendorsoftwareproduct.types.schemagenerator.SchemaTemplateContext;
32 import org.openecomp.sdc.vendorsoftwareproduct.types.schemagenerator.SchemaTemplateInput;
33 import org.openecomp.sdc.versioning.dao.types.Version;
34
35 import java.util.Collection;
36 import java.util.Map;
37 import java.util.Set;
38
39 public interface CompositionEntityDataManager {
40
41   Map<CompositionEntityId, Collection<String>> validateEntitiesQuestionnaire();
42
43   void addEntity(CompositionEntity entity, SchemaTemplateInput schemaTemplateInput);
44
45   CompositionEntityValidationData validateEntity(CompositionEntity entity,
46                                                  SchemaTemplateContext schemaTemplateContext,
47                                                  SchemaTemplateInput schemaTemplateInput);
48
49   void buildTrees();
50
51   void addErrorsToTrees(Map<CompositionEntityId, Collection<String>> errors);
52
53   Set<CompositionEntityValidationData> getEntityListWithErrors();
54
55   Collection<CompositionEntityValidationData> getTrees();
56
57   void saveCompositionData(String vspId, Version version, CompositionData compositionData);
58
59   Set<CompositionEntityValidationData> getAllErrorsByVsp(String vspId);
60
61   void saveComponents(String vspId, Version version, CompositionData compositionData,
62                       Map<String, String> networkIdByName);
63
64   void saveNicsByComponent(String vspId, Version version,
65                            Map<String, String> networkIdByName, Component component,
66                            String componentId);
67
68   Map<String, String> saveNetworks(String vspId, Version version,
69                                    CompositionData compositionData);
70
71   NetworkEntity createNetwork(NetworkEntity network);
72
73   ComponentEntity createComponent(ComponentEntity component);
74
75   NicEntity createNic(NicEntity nic);
76
77 }