fix a bug and ...
[so.git] / bpmn / MSOInfrastructureBPMN / src / main / java / org / openecomp / mso / bpmn / infrastructure / workflow / serviceTask / client / entity / OutputEntity.java
1 package org.openecomp.mso.bpmn.infrastructure.workflow.serviceTask.client.entity;
2
3 import com.fasterxml.jackson.annotation.JsonProperty;
4
5 /**
6  * Created by 10112215 on 2017/9/22.
7  */
8 public class OutputEntity {
9     @JsonProperty("svc-request-id")
10     private String svcRequestId;
11
12     @JsonProperty("response-code")
13     private String responseCode;
14
15     @JsonProperty("response-message")
16     private String responseMessage;
17
18     @JsonProperty("ack-final-indicator")
19     private String ackFinalIndicator;
20
21     @JsonProperty("network-response-information")
22     private NetworkResponseInformationEntity networkResponseInformation;
23
24     @JsonProperty("service-response-information")
25     private ServiceResponseInformationEntity serviceResponseInformation;
26
27     public String getSvcRequestId() {
28         return svcRequestId;
29     }
30
31     public void setSvcRequestId(String svcRequestId) {
32         this.svcRequestId = svcRequestId;
33     }
34
35     public String getResponseCode() {
36         return responseCode;
37     }
38
39     public void setResponseCode(String responseCode) {
40         this.responseCode = responseCode;
41     }
42
43     public String getResponseMessage() {
44         return responseMessage;
45     }
46
47     public void setResponseMessage(String responseMessage) {
48         this.responseMessage = responseMessage;
49     }
50
51     public String getAckFinalIndicator() {
52         return ackFinalIndicator;
53     }
54
55     public void setAckFinalIndicator(String ackFinalIndicator) {
56         this.ackFinalIndicator = ackFinalIndicator;
57     }
58
59     public NetworkResponseInformationEntity getNetworkResponseInformation() {
60         return networkResponseInformation;
61     }
62
63     public void setNetworkResponseInformation(NetworkResponseInformationEntity networkResponseInformation) {
64         this.networkResponseInformation = networkResponseInformation;
65     }
66
67     public ServiceResponseInformationEntity getServiceResponseInformation() {
68         return serviceResponseInformation;
69     }
70
71     public void setServiceResponseInformation(ServiceResponseInformationEntity serviceResponseInformation) {
72         this.serviceResponseInformation = serviceResponseInformation;
73     }
74 }