2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2020 Wipro Limited.
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.onap.so.apihandlerinfra.onap3gppserviceinstancebeans;
23 import java.util.HashMap;
25 import com.fasterxml.jackson.annotation.JsonIgnore;
26 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
27 import com.fasterxml.jackson.annotation.JsonProperty;
30 * Model class for 3GPP service instance Activate request
33 public class ActivateOrDeactivate3gppService {
35 @JsonProperty("serviceInstanceID")
36 private String serviceInstanceID;
38 @JsonProperty("globalSubscriberId")
39 private String globalSubscriberId;
41 @JsonProperty("subscriptionServiceType")
42 private String subscriptionServiceType;
44 @JsonProperty("networkType")
45 private String networkType;
47 @JsonProperty("additionalProperties")
48 private Map<String, Object> additionalProperties = new HashMap<>();
50 public String getServiceInstanceID() {
51 return serviceInstanceID;
54 public void setServiceInstanceID(String serviceInstanceID) {
55 this.serviceInstanceID = serviceInstanceID;
58 public String getGlobalSubscriberId() {
59 return globalSubscriberId;
62 public void setGlobalSubscriberId(String globalSubscriberId) {
63 this.globalSubscriberId = globalSubscriberId;
66 public String getSubscriptionServiceType() {
67 return subscriptionServiceType;
70 public void setSubscriptionServiceType(String subscriptionServiceType) {
71 this.subscriptionServiceType = subscriptionServiceType;
74 public String getNetworkType() {
78 public void setNetworkType(String networkType) {
79 this.networkType = networkType;
82 public Map<String, Object> getAdditionalProperties() {
83 return additionalProperties;
86 public void setAdditionalProperties(Map<String, Object> additionalProperties) {
87 this.additionalProperties = additionalProperties;
92 public String toString() {
93 return "ActivateOrDeactivate3gppService [serviceInstanceID=" + serviceInstanceID + ", globalSubscriberId="
94 + globalSubscriberId + ", subscriptionServiceType=" + subscriptionServiceType + ", networkType="
95 + networkType + ", additionalProperties=" + additionalProperties + "]";