From 280f8015d06af1f41a3ef12e8300801c7a5e0d54 Mon Sep 17 00:00:00 2001 From: AviZi Date: Fri, 9 Jun 2017 02:39:56 +0300 Subject: [SDC-29] Amdocs OnBoard 1707 initial commit. Change-Id: Ie4d12a3f574008b792899b368a0902a8b46b5370 Signed-off-by: AviZi --- .../sdcrests/vendorsoftwareproducts/types/ProcessRequestDto.java | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to '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') diff --git a/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 b/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 e9c99b9d65..9e09503100 100644 --- a/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 +++ b/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 @@ -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; } } -- cgit 1.2.3-korg