[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / 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
1 package org.openecomp.sdc.vendorsoftwareproduct.dao.type;
2
3 import java.nio.ByteBuffer;
4
5 public class OrchestrationTemplateCandidateData {
6   private ByteBuffer contentData;
7   private String filesDataStructure;
8
9
10   public OrchestrationTemplateCandidateData() {
11   }
12
13   public OrchestrationTemplateCandidateData(ByteBuffer contentData,
14                                             String dataStructureJson) {
15     this.contentData = contentData;
16     this.filesDataStructure = dataStructureJson;
17   }
18
19   public ByteBuffer getContentData() {
20     return contentData;
21   }
22
23   public void setContentData(ByteBuffer contentData) {
24     this.contentData = contentData;
25   }
26
27   public String getFilesDataStructure() {
28     return filesDataStructure;
29   }
30
31   public void setFilesDataStructure(String filesDataStructure) {
32     this.filesDataStructure = filesDataStructure;
33   }
34 }