Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / e2eserviceinstancebeans / E2EService.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.onap.so.apihandlerinfra.e2eserviceinstancebeans;
22
23 import java.util.HashMap;
24 import java.util.Map;
25 import com.fasterxml.jackson.annotation.JsonIgnore;
26 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
27 import com.fasterxml.jackson.annotation.JsonProperty;
28
29 @JsonIgnoreProperties({"additionalProperties"})
30 public class E2EService {
31
32     @JsonProperty("name")
33     private String name;
34
35     @JsonProperty("description")
36     private String description;
37
38     @JsonProperty("serviceInvariantUuid")
39     private String serviceInvariantUuid;
40
41     @JsonProperty("serviceUuid")
42     private String serviceUuid;
43
44     @JsonProperty("globalSubscriberId")
45     private String globalSubscriberId;
46
47     @JsonProperty("serviceType")
48     private String serviceType;
49
50     @JsonProperty("parameters")
51     private E2EParameters parameters;
52
53     @JsonIgnore
54     private Map<String, Object> additionalProperties = new HashMap<>();
55
56     public String getName() {
57         return name;
58     }
59
60     public void setName(String name) {
61         this.name = name;
62     }
63
64     public String getDescription() {
65         return description;
66     }
67
68     public void setDescription(String description) {
69         this.description = description;
70     }
71
72     public E2EParameters getParameters() {
73         return parameters;
74     }
75
76     public void setParameters(E2EParameters parameters) {
77         this.parameters = parameters;
78     }
79
80     public Map<String, Object> getAdditionalProperties() {
81         return additionalProperties;
82     }
83
84     public void setAdditionalProperties(Map<String, Object> additionalProperties) {
85         this.additionalProperties = additionalProperties;
86     }
87
88     public String getServiceInvariantUuid() {
89         return serviceInvariantUuid;
90     }
91
92     public void setServiceInvariantUuid(String serviceInvariantUuid) {
93         this.serviceInvariantUuid = serviceInvariantUuid;
94     }
95
96     public String getGlobalSubscriberId() {
97         return globalSubscriberId;
98     }
99
100     public void setGlobalSubscriberId(String globalSubscriberId) {
101         this.globalSubscriberId = globalSubscriberId;
102     }
103
104     public String getServiceType() {
105         return serviceType;
106     }
107
108     public void setServiceType(String serviceType) {
109         this.serviceType = serviceType;
110     }
111
112     public String getServiceUuid() {
113         return serviceUuid;
114     }
115
116     public void setServiceUuid(String serviceUuid) {
117         this.serviceUuid = serviceUuid;
118     }
119 }