2  * ============LICENSE_START=======================================================
 
   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
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  21 package org.openecomp.mso.apihandlerinfra.serviceinstancebeans;
 
  23 import java.util.HashMap;
 
  24 import java.util.List;
 
  27 import org.codehaus.jackson.annotate.JsonIgnore;
 
  28 import org.codehaus.jackson.annotate.JsonIgnoreProperties;
 
  29 import org.codehaus.jackson.annotate.JsonProperty;
 
  31 @JsonIgnoreProperties({ "additionalProperties" })
 
  32 public class E2EParameters {
 
  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;
 
  45         private Map<String, Object> additionalProperties = new HashMap<>();
 
  47         public String getDomainHost() {
 
  51         public void setDomainHost(String domainHost) {
 
  52                 this.domainHost = domainHost;
 
  55         public String getNodeTemplateName() {
 
  56                 return nodeTemplateName;
 
  59         public void setNodeTemplateName(String nodeTemplateName) {
 
  60                 this.nodeTemplateName = nodeTemplateName;
 
  63         public String getNodeType() {
 
  67         public void setNodeType(String nodeType) {
 
  68                 this.nodeType = nodeType;
 
  71         public List<E2ESegment> getSegments() {
 
  75         public void setSegments(List<E2ESegment> segments) {
 
  76                 this.segments = segments;
 
  79         public E2ENsParameters_ getNsParameters() {
 
  83         public void setNsParameters(E2ENsParameters_ nsParameters) {
 
  84                 this.nsParameters = nsParameters;
 
  87         public Map<String, Object> getAdditionalProperties() {
 
  88                 return additionalProperties;
 
  91         public void setAdditionalProperties(Map<String, Object> additionalProperties) {
 
  92                 this.additionalProperties = additionalProperties;