aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-api/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/dao/type/OrchestrationTemplateCandidateData.java
blob: de70434d2ff967fa60d1a8be1e4b08f616704e08 (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
package org.openecomp.sdc.vendorsoftwareproduct.dao.type;

import java.nio.ByteBuffer;

public class OrchestrationTemplateCandidateData {
  private ByteBuffer contentData;
  private String filesDataStructure;


  public OrchestrationTemplateCandidateData() {
  }

  public OrchestrationTemplateCandidateData(ByteBuffer contentData,
                                            String dataStructureJson) {
    this.contentData = contentData;
    this.filesDataStructure = dataStructureJson;
  }

  public ByteBuffer getContentData() {
    return contentData;
  }

  public void setContentData(ByteBuffer contentData) {
    this.contentData = contentData;
  }

  public String getFilesDataStructure() {
    return filesDataStructure;
  }

  public void setFilesDataStructure(String filesDataStructure) {
    this.filesDataStructure = filesDataStructure;
  }
}