Add collaboration feature
[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   private String fileSuffix;
9   private String fileName;
10
11   public OrchestrationTemplateCandidateData() {
12   }
13
14   public OrchestrationTemplateCandidateData(ByteBuffer contentData, String dataStructureJson,
15                                             String fileSuffix, String fileName) {
16     this.contentData = contentData;
17     this.filesDataStructure = dataStructureJson;
18     this.fileSuffix = fileSuffix;
19     this.fileName = fileName;
20   }
21
22   public ByteBuffer getContentData() {
23     return contentData;
24   }
25
26   public void setContentData(ByteBuffer contentData) {
27     this.contentData = contentData;
28   }
29
30   public String getFilesDataStructure() {
31     return filesDataStructure;
32   }
33
34   public void setFilesDataStructure(String filesDataStructure) {
35     this.filesDataStructure = filesDataStructure;
36   }
37
38   public String getFileSuffix() {
39     return fileSuffix;
40   }
41
42   public void setFileSuffix(String fileSuffix) {
43     this.fileSuffix = fileSuffix;
44   }
45
46   public String getFileName() {
47     return fileName;
48   }
49
50   public void setFileName(String fileName) {
51     this.fileName = fileName;
52   }
53 }