37af2b86e1a0f42cbceabc7f183c9b5ffc1081b3
[sdc.git] /
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdc.vendorsoftwareproduct;
18
19 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.ComponentEntity;
20 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.CompositionEntity;
21 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.DeploymentFlavorEntity;
22 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.ImageEntity;
23 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.NicEntity;
24 import org.openecomp.sdc.vendorsoftwareproduct.types.composition.Component;
25 import org.openecomp.sdc.vendorsoftwareproduct.types.composition.CompositionData;
26 import org.openecomp.sdc.vendorsoftwareproduct.types.composition.CompositionEntityId;
27 import org.openecomp.sdc.vendorsoftwareproduct.types.composition.CompositionEntityValidationData;
28 import org.openecomp.sdc.vendorsoftwareproduct.types.schemagenerator.SchemaTemplateContext;
29 import org.openecomp.sdc.vendorsoftwareproduct.types.schemagenerator.SchemaTemplateInput;
30 import org.openecomp.sdc.versioning.dao.types.Version;
31
32 import java.util.Collection;
33 import java.util.Map;
34 import java.util.Set;
35
36 public interface CompositionEntityDataManager {
37
38   Map<CompositionEntityId, Collection<String>> validateEntitiesQuestionnaire();
39
40   void addEntity(CompositionEntity entity, SchemaTemplateInput schemaTemplateInput);
41
42   CompositionEntityValidationData validateEntity(CompositionEntity entity,
43                                                  SchemaTemplateContext schemaTemplateContext,
44                                                  SchemaTemplateInput schemaTemplateInput);
45
46   void buildTrees();
47
48   void addErrorsToTrees(Map<CompositionEntityId, Collection<String>> errors);
49
50   Set<CompositionEntityValidationData> getEntityListWithErrors();
51
52   Collection<CompositionEntityValidationData> getTrees();
53
54   void saveCompositionData(String vspId, Version version, CompositionData compositionData);
55
56   Set<CompositionEntityValidationData> getAllErrorsByVsp(String vspId);
57
58   ComponentEntity createComponent(ComponentEntity component, boolean isManualVsp);
59
60   NicEntity createNic(NicEntity nic);
61
62   DeploymentFlavorEntity createDeploymentFlavor(DeploymentFlavorEntity deploymentFlavor);
63
64   ImageEntity createImage(ImageEntity image);
65
66   void saveComputesFlavorByComponent(String vspId, Version version, Component component,
67                                      String componentId);
68
69   void saveImagesByComponent(String vspId, Version version, Component component,
70                              String componentId);
71
72 }