summaryrefslogtreecommitdiffstats
path: root/wfenginemgrservice/src/main/java/org/onap/workflow/entity/DeployBpmnFileResponse.java
diff options
context:
space:
mode:
Diffstat (limited to 'wfenginemgrservice/src/main/java/org/onap/workflow/entity/DeployBpmnFileResponse.java')
-rw-r--r--wfenginemgrservice/src/main/java/org/onap/workflow/entity/DeployBpmnFileResponse.java30
1 files changed, 24 insertions, 6 deletions
diff --git a/wfenginemgrservice/src/main/java/org/onap/workflow/entity/DeployBpmnFileResponse.java b/wfenginemgrservice/src/main/java/org/onap/workflow/entity/DeployBpmnFileResponse.java
index 6a1920e..bb6fcbb 100644
--- a/wfenginemgrservice/src/main/java/org/onap/workflow/entity/DeployBpmnFileResponse.java
+++ b/wfenginemgrservice/src/main/java/org/onap/workflow/entity/DeployBpmnFileResponse.java
@@ -15,15 +15,33 @@
*/
package org.onap.workflow.entity;
-import lombok.AllArgsConstructor;
-import lombok.Data;
-import lombok.NoArgsConstructor;
-@Data
-@NoArgsConstructor
-@AllArgsConstructor
public class DeployBpmnFileResponse {
+ public int getStatus() {
+ return status;
+ }
+ public void setStatus(int status) {
+ this.status = status;
+ }
+ public String getMessage() {
+ return message;
+ }
+ public void setMessage(String message) {
+ this.message = message;
+ }
+ public String getDeployedId() {
+ return deployedId;
+ }
+ public void setDeployedId(String deployedId) {
+ this.deployedId = deployedId;
+ }
+ public String getProcessId() {
+ return processId;
+ }
+ public void setProcessId(String processId) {
+ this.processId = processId;
+ }
private int status;
private String message;
private String deployedId;