VoLTE service instance
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / serviceinstancebeans / E2EParameters.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 Huawei Technologies Co., Ltd. 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.apihandlerinfra.serviceinstancebeans;
22
23 import java.util.HashMap;
24 import java.util.List;
25 import java.util.Map;
26
27 import org.codehaus.jackson.annotate.JsonIgnore;
28 import org.codehaus.jackson.annotate.JsonIgnoreProperties;
29 import org.codehaus.jackson.annotate.JsonProperty;
30
31 @JsonIgnoreProperties({ "additionalProperties" })
32 public class E2EParameters {
33
34         @JsonProperty("domainHost")
35         private String domainHost;
36         @JsonProperty("nodeTemplateName")
37         private String nodeTemplateName;
38         @JsonProperty("nodeType")
39         private String nodeType;
40         @JsonProperty("segments")
41         private List<E2ESegment> segments = null;
42         @JsonProperty("nsParameters")
43         private E2ENsParameters_ nsParameters;
44         @JsonIgnore
45         private Map<String, Object> additionalProperties = new HashMap<>();
46
47         public String getDomainHost() {
48                 return domainHost;
49         }
50
51         public void setDomainHost(String domainHost) {
52                 this.domainHost = domainHost;
53         }
54
55         public String getNodeTemplateName() {
56                 return nodeTemplateName;
57         }
58
59         public void setNodeTemplateName(String nodeTemplateName) {
60                 this.nodeTemplateName = nodeTemplateName;
61         }
62
63         public String getNodeType() {
64                 return nodeType;
65         }
66
67         public void setNodeType(String nodeType) {
68                 this.nodeType = nodeType;
69         }
70
71         public List<E2ESegment> getSegments() {
72                 return segments;
73         }
74
75         public void setSegments(List<E2ESegment> segments) {
76                 this.segments = segments;
77         }
78
79         public E2ENsParameters_ getNsParameters() {
80                 return nsParameters;
81         }
82
83         public void setNsParameters(E2ENsParameters_ nsParameters) {
84                 this.nsParameters = nsParameters;
85         }
86
87         public Map<String, Object> getAdditionalProperties() {
88                 return additionalProperties;
89         }
90
91         public void setAdditionalProperties(Map<String, Object> additionalProperties) {
92                 this.additionalProperties = additionalProperties;
93         }
94
95 }