3f094a8cc9e00dde1b59cf7e19b512c06a984006
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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
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.onap3gppserviceinstancebeans;
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 /**
30  * Model class for 3GPP service instance Activate request
31  */
32
33 public class ActivateOrDeactivate3gppService {
34
35     @JsonProperty("serviceInstanceID")
36     private String serviceInstanceID;
37
38     @JsonProperty("globalSubscriberId")
39     private String globalSubscriberId;
40
41     @JsonProperty("subscriptionServiceType")
42     private String subscriptionServiceType;
43
44     @JsonProperty("networkType")
45     private String networkType;
46
47     @JsonProperty("additionalProperties")
48     private Map<String, Object> additionalProperties = new HashMap<>();
49
50     public String getServiceInstanceID() {
51         return serviceInstanceID;
52     }
53
54     public void setServiceInstanceID(String serviceInstanceID) {
55         this.serviceInstanceID = serviceInstanceID;
56     }
57
58     public String getGlobalSubscriberId() {
59         return globalSubscriberId;
60     }
61
62     public void setGlobalSubscriberId(String globalSubscriberId) {
63         this.globalSubscriberId = globalSubscriberId;
64     }
65
66     public String getSubscriptionServiceType() {
67         return subscriptionServiceType;
68     }
69
70     public void setSubscriptionServiceType(String subscriptionServiceType) {
71         this.subscriptionServiceType = subscriptionServiceType;
72     }
73
74     public String getNetworkType() {
75         return networkType;
76     }
77
78     public void setNetworkType(String networkType) {
79         this.networkType = networkType;
80     }
81
82     public Map<String, Object> getAdditionalProperties() {
83         return additionalProperties;
84     }
85
86     public void setAdditionalProperties(Map<String, Object> additionalProperties) {
87         this.additionalProperties = additionalProperties;
88     }
89
90
91     @Override
92     public String toString() {
93         return "ActivateOrDeactivate3gppService [serviceInstanceID=" + serviceInstanceID + ", globalSubscriberId="
94                 + globalSubscriberId + ", subscriptionServiceType=" + subscriptionServiceType + ", networkType="
95                 + networkType + ", additionalProperties=" + additionalProperties + "]";
96     }
97
98 }