71cb2685ce48dcbca8f3876d21f6288eb6818b93
[so.git] /
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/20.
7  */
8 public class InputEntity {
9     @JsonProperty("sdnc-request-header")
10     private SdncRequestHeaderEntity sdncRequestHeader;
11
12     @JsonProperty("request-information")
13     private RequestInformationEntity requestInformation;
14
15     @JsonProperty("service-information")
16     private ServiceInformationEntity serviceInformation;
17
18     @JsonProperty("network-information")
19     private NetworkInformationEntity networkInformation;
20
21     @JsonProperty("network-request-input")
22     private NetworkRequestInputEntity networkRequestInput;
23
24     public SdncRequestHeaderEntity getSdncRequestHeader() {
25         return sdncRequestHeader;
26     }
27
28     public void setSdncRequestHeader(SdncRequestHeaderEntity sdncRequestHeader) {
29         this.sdncRequestHeader = sdncRequestHeader;
30     }
31
32     public RequestInformationEntity getRequestInformation() {
33         return requestInformation;
34     }
35
36     public void setRequestInformation(RequestInformationEntity requestInformation) {
37         this.requestInformation = requestInformation;
38     }
39
40     public ServiceInformationEntity getServiceInformation() {
41         return serviceInformation;
42     }
43
44     public void setServiceInformation(ServiceInformationEntity serviceInformation) {
45         this.serviceInformation = serviceInformation;
46     }
47
48     public NetworkInformationEntity getNetworkInformation() {
49         return networkInformation;
50     }
51
52     public void setNetworkInformation(NetworkInformationEntity networkInformation) {
53         this.networkInformation = networkInformation;
54     }
55
56     public NetworkRequestInputEntity getNetworkRequestInput() {
57         return networkRequestInput;
58     }
59
60     public void setNetworkRequestInput(NetworkRequestInputEntity networkRequestInput) {
61         this.networkRequestInput = networkRequestInput;
62     }
63 }