Remove unneeded param type definition
[so.git] / bpmn / MSOInfrastructureBPMN / src / main / java / org / openecomp / mso / bpmn / infrastructure / workflow / serviceTask / client / entity / NetworkTopologyOperationInputEntity.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.mso.bpmn.infrastructure.workflow.serviceTask.client.entity;
22
23 import com.fasterxml.jackson.annotation.JsonProperty;
24
25 /**
26  * Created by 10112215 on 2017/9/20.
27  */
28 public class NetworkTopologyOperationInputEntity {
29     @JsonProperty("GENERIC-RESOURCE-API:sdnc-request-header")
30     private SdncRequestHeaderEntity sdncRequestHeader;
31
32     @JsonProperty("GENERIC-RESOURCE-API:request-information")
33     private RequestInformationEntity requestInformation;
34
35     @JsonProperty("GENERIC-RESOURCE-API:service-information")
36     private ServiceInformationEntity serviceInformation;
37
38     @JsonProperty("GENERIC-RESOURCE-API:network-information")
39     private NetworkInformationEntity networkInformation;
40
41     @JsonProperty("GENERIC-RESOURCE-API:network-request-input")
42     private NetworkRequestInputEntity networkRequestInput;
43
44     public SdncRequestHeaderEntity getSdncRequestHeader() {
45         return sdncRequestHeader;
46     }
47
48     public void setSdncRequestHeader(SdncRequestHeaderEntity sdncRequestHeader) {
49         this.sdncRequestHeader = sdncRequestHeader;
50     }
51
52     public RequestInformationEntity getRequestInformation() {
53         return requestInformation;
54     }
55
56     public void setRequestInformation(RequestInformationEntity requestInformation) {
57         this.requestInformation = requestInformation;
58     }
59
60     public ServiceInformationEntity getServiceInformation() {
61         return serviceInformation;
62     }
63
64     public void setServiceInformation(ServiceInformationEntity serviceInformation) {
65         this.serviceInformation = serviceInformation;
66     }
67
68     public NetworkInformationEntity getNetworkInformation() {
69         return networkInformation;
70     }
71
72     public void setNetworkInformation(NetworkInformationEntity networkInformation) {
73         this.networkInformation = networkInformation;
74     }
75
76     public NetworkRequestInputEntity getNetworkRequestInput() {
77         return networkRequestInput;
78     }
79
80     public void setNetworkRequestInput(NetworkRequestInputEntity networkRequestInput) {
81         this.networkRequestInput = networkRequestInput;
82     }
83 }