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 / OrchestrationTemplateEntity.java
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -27,25 +27,22 @@ import org.openecomp.sdc.versioning.dao.types.VersionableEntity;
 
 import java.nio.ByteBuffer;
 
-public class UploadDataEntity implements VersionableEntity {
-  private static final String ENTITY_TYPE = "Vendor Software Product Upload data";
+public class OrchestrationTemplateEntity implements VersionableEntity {
+  private static final String ENTITY_TYPE = "Vendor Software Product Orchestration Template";
 
   private String id;
-
   private Version version;
-
+  private String fileSuffix;
+  private String fileName;
   private String packageName;
-
   private String packageVersion;
-
   private String validationData;
-
   private ByteBuffer contentData;
 
-  public UploadDataEntity() {
+  public OrchestrationTemplateEntity() {
   }
 
-  public UploadDataEntity(String id, Version version) {
+  public OrchestrationTemplateEntity(String id, Version version) {
     this.id = id;
     this.version = version;
   }
@@ -78,6 +75,22 @@ public class UploadDataEntity implements VersionableEntity {
     this.version = version;
   }
 
+  public String getFileSuffix() {
+    return fileSuffix;
+  }
+
+  public void setFileSuffix(String fileSuffix) {
+    this.fileSuffix = fileSuffix;
+  }
+
+  public String getFileName() {
+    return fileName;
+  }
+
+  public void setFileName(String fileName) {
+    this.fileName = fileName;
+  }
+
   public String getPackageName() {
     return packageName;
   }