2 * Copyright © 2016-2018 European Support Limited
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package org.openecomp.sdc.vendorsoftwareproduct;
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;
32 import java.util.Collection;
36 public interface CompositionEntityDataManager {
38 Map<CompositionEntityId, Collection<String>> validateEntitiesQuestionnaire();
40 void addEntity(CompositionEntity entity, SchemaTemplateInput schemaTemplateInput);
42 CompositionEntityValidationData validateEntity(CompositionEntity entity,
43 SchemaTemplateContext schemaTemplateContext,
44 SchemaTemplateInput schemaTemplateInput);
48 void addErrorsToTrees(Map<CompositionEntityId, Collection<String>> errors);
50 Set<CompositionEntityValidationData> getEntityListWithErrors();
52 Collection<CompositionEntityValidationData> getTrees();
54 void saveCompositionData(String vspId, Version version, CompositionData compositionData);
56 Set<CompositionEntityValidationData> getAllErrorsByVsp(String vspId);
58 ComponentEntity createComponent(ComponentEntity component, boolean isManualVsp);
60 NicEntity createNic(NicEntity nic);
62 DeploymentFlavorEntity createDeploymentFlavor(DeploymentFlavorEntity deploymentFlavor);
64 ImageEntity createImage(ImageEntity image);
66 void saveComputesFlavorByComponent(String vspId, Version version, Component component,
69 void saveImagesByComponent(String vspId, Version version, Component component,