Delete unwanted code
[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         
42         
43         @JsonIgnore
44         private Map<String, Object> additionalProperties = new HashMap<>();
45
46         public String getDomainHost() {
47                 return domainHost;
48         }
49
50         public void setDomainHost(String domainHost) {
51                 this.domainHost = domainHost;
52         }
53
54         public String getNodeTemplateName() {
55                 return nodeTemplateName;
56         }
57
58         public void setNodeTemplateName(String nodeTemplateName) {
59                 this.nodeTemplateName = nodeTemplateName;
60         }
61
62         public String getNodeType() {
63                 return nodeType;
64         }
65
66         public void setNodeType(String nodeType) {
67                 this.nodeType = nodeType;
68         }
69
70
71         public Map<String, Object> getAdditionalProperties() {
72                 return additionalProperties;
73         }
74
75         public void setAdditionalProperties(Map<String, Object> additionalProperties) {
76                 this.additionalProperties = additionalProperties;
77         }
78
79 }