aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/tools/migration/1702_to_1707_zusammen/src/main/java/org/openecomp/core/migration/convertors/OrchestrationTemplateCandidateConvertor.java
blob: c6778544fdd98d4f75d488433bc521f79b09c1c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package org.openecomp.core.migration.convertors;

import com.amdocs.zusammen.datatypes.item.ElementContext;
import com.amdocs.zusammen.datatypes.item.Info;
import com.amdocs.zusammen.datatypes.item.ItemVersionData;
import com.amdocs.zusammen.plugin.statestore.cassandra.dao.types.ElementEntityContext;
import com.amdocs.zusammen.sdk.collaboration.types.CollaborationElement;
import org.openecomp.core.migration.MigrationMain;
import org.openecomp.core.migration.loaders.VspInformation;
import org.openecomp.core.migration.store.ElementHandler;
import org.openecomp.sdc.logging.api.Logger;
import org.openecomp.sdc.logging.api.LoggerFactory;
import org.openecomp.sdc.vendorlicense.dao.types.VendorLicenseModelEntity;
import org.openecomp.sdc.vendorsoftwareproduct.dao.impl.zusammen.ElementPropertyName;
import org.openecomp.sdc.vendorsoftwareproduct.dao.impl.zusammen.ElementType;
import org.openecomp.sdc.vendorsoftwareproduct.dao.impl.zusammen.StructureElement;
import org.openecomp.sdc.vendorsoftwareproduct.dao.type.ComponentEntity;
import org.openecomp.sdc.vendorsoftwareproduct.dao.type.OrchestrationTemplateCandidateDataEntity;

import java.util.HashSet;
import java.util.List;
import java.util.Set;

public class OrchestrationTemplateCandidateConvertor {




  private static Logger logger = LoggerFactory.getLogger(MigrationMain.class);

  public static CollaborationElement[] convertOrchestrationTemplateCandidateToElement(
      OrchestrationTemplateCandidateDataEntity entity) {


    CollaborationElement[] orchestrationTemplateCandidateElements = new CollaborationElement[2];
    List<String> orchestrationTemplateCandidateNamespace =
        getOrchestrationTemplateCandidateNamespace();



    orchestrationTemplateCandidateElements[0] = ElementHandler.getElementEntity(
        entity.getId(), entity.getVersion().toString(), StructureElement.OrchestrationTemplateCandidate.name(),
        orchestrationTemplateCandidateNamespace,
        ElementHandler.getStructuralElementInfo(StructureElement.OrchestrationTemplateCandidate.name()),
        null,
        null,
        entity.getFilesDataStructure().getBytes());

    orchestrationTemplateCandidateNamespace.add(StructureElement.OrchestrationTemplateCandidate.name());
    orchestrationTemplateCandidateElements[1] = ElementHandler.getElementEntity(
        entity.getId(), entity.getVersion().toString(), StructureElement.OrchestrationTemplateCandidateContent.name(),
        orchestrationTemplateCandidateNamespace,
        ElementHandler.getStructuralElementInfo(StructureElement.OrchestrationTemplateCandidateContent.name()),
        null,
        null,
        entity.getContentData().array());



    return orchestrationTemplateCandidateElements;
  }


  private static List<String> getOrchestrationTemplateCandidateNamespace() {
    return ElementHandler.getElementPath();
  }

  public static ElementEntityContext convertComponentToElementContext(
      ComponentEntity componentEntity) {

    return new ElementEntityContext("GLOBAL_USER", new
        ElementContext(componentEntity.getVspId(), componentEntity.getVersion().toString()));
  }




}