[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-software-products-rest / vendor-software-products-rest-types / src / main / java / org / openecomp / sdcrests / vendorsoftwareproducts / types / ProcessRequestDto.java
index e9c99b9..9e09503 100644 (file)
@@ -20,6 +20,8 @@
 
 package org.openecomp.sdcrests.vendorsoftwareproducts.types;
 
+import org.openecomp.sdc.vendorsoftwareproduct.dao.type.ProcessType;
+
 import javax.validation.constraints.NotNull;
 
 public class ProcessRequestDto {
@@ -29,6 +31,8 @@ public class ProcessRequestDto {
 
   private String description;
 
+  private ProcessType type;
+
   public String getName() {
     return name;
   }
@@ -44,4 +48,8 @@ public class ProcessRequestDto {
   public void setDescription(String description) {
     this.description = description;
   }
+
+  public ProcessType getType() { return type; }
+
+  public void setType(ProcessType type) { this.type = type; }
 }