Add unit test for vfc-nfvo-wfengine
[vfc/nfvo/wfengine.git] / wfenginemgrservice / src / main / java / org / onap / workflow / entity / DeployBpmnFileResponse.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.workflow.entity;
17
18
19
20 public class DeployBpmnFileResponse {
21   public int getStatus() {
22     return status;
23   }
24   public void setStatus(int status) {
25     this.status = status;
26   }
27   public String getMessage() {
28     return message;
29   }
30   public void setMessage(String message) {
31     this.message = message;
32   }
33   public String getDeployedId() {
34     return deployedId;
35   }
36   public void setDeployedId(String deployedId) {
37     this.deployedId = deployedId;
38   }
39   public String getProcessId() {
40     return processId;
41   }
42   public void setProcessId(String processId) {
43     this.processId = processId;
44   }
45   private int status;
46   private String message;
47   private String deployedId;
48   private String processId;
49 }