aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOInfrastructureBPMN/src/main/java/org/openecomp/mso/bpmn/infrastructure/workflow/serviceTask/client/entity/InputEntity.java
blob: 71cb2685ce48dcbca8f3876d21f6288eb6818b93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package org.openecomp.mso.bpmn.infrastructure.workflow.serviceTask.client.entity;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Created by 10112215 on 2017/9/20.
 */
public class InputEntity {
    @JsonProperty("sdnc-request-header")
    private SdncRequestHeaderEntity sdncRequestHeader;

    @JsonProperty("request-information")
    private RequestInformationEntity requestInformation;

    @JsonProperty("service-information")
    private ServiceInformationEntity serviceInformation;

    @JsonProperty("network-information")
    private NetworkInformationEntity networkInformation;

    @JsonProperty("network-request-input")
    private NetworkRequestInputEntity networkRequestInput;

    public SdncRequestHeaderEntity getSdncRequestHeader() {
        return sdncRequestHeader;
    }

    public void setSdncRequestHeader(SdncRequestHeaderEntity sdncRequestHeader) {
        this.sdncRequestHeader = sdncRequestHeader;
    }

    public RequestInformationEntity getRequestInformation() {
        return requestInformation;
    }

    public void setRequestInformation(RequestInformationEntity requestInformation) {
        this.requestInformation = requestInformation;
    }

    public ServiceInformationEntity getServiceInformation() {
        return serviceInformation;
    }

    public void setServiceInformation(ServiceInformationEntity serviceInformation) {
        this.serviceInformation = serviceInformation;
    }

    public NetworkInformationEntity getNetworkInformation() {
        return networkInformation;
    }

    public void setNetworkInformation(NetworkInformationEntity networkInformation) {
        this.networkInformation = networkInformation;
    }

    public NetworkRequestInputEntity getNetworkRequestInput() {
        return networkRequestInput;
    }

    public void setNetworkRequestInput(NetworkRequestInputEntity networkRequestInput) {
        this.networkRequestInput = networkRequestInput;
    }
}