SO changes for Service Intent
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / serviceintentinstancebeans / ServiceIntentCommonRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2020 Huawei Technologies.
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.serviceintentinstancebeans;
22
23 import com.fasterxml.jackson.annotation.JsonProperty;
24 import java.util.HashMap;
25 import java.util.Map;
26
27 /**
28  * Model class for common parameter of Service Intent request
29  */
30 public class ServiceIntentCommonRequest {
31
32     @JsonProperty("globalSubscriberId")
33     private String globalSubscriberId;
34
35     @JsonProperty("subscriptionServiceType")
36     private String subscriptionServiceType;
37
38     @JsonProperty("additionalProperties")
39     private Map<String, Object> additionalProperties = new HashMap<>();
40
41     @JsonProperty("serviceType")
42     private String serviceType;
43
44     public String getGlobalSubscriberId() {
45         return globalSubscriberId;
46     }
47
48     public void setGlobalSubscriberId(String globalSubscriberId) {
49         this.globalSubscriberId = globalSubscriberId;
50     }
51
52     public String getSubscriptionServiceType() {
53         return subscriptionServiceType;
54     }
55
56     public void setSubscriptionServiceType(String subscriptionServiceType) {
57         this.subscriptionServiceType = subscriptionServiceType;
58     }
59
60     public Map<String, Object> getAdditionalProperties() {
61         return additionalProperties;
62     }
63
64     public void setAdditionalProperties(Map<String, Object> additionalProperties) {
65         this.additionalProperties = additionalProperties;
66     }
67
68     public String getServiceType() {
69         return serviceType;
70     }
71
72     public void setServiceType(String serviceType) {
73         this.serviceType = serviceType;
74     }
75
76     @Override
77     public String toString() {
78         return "ServiceIntentCommonRequest [globalSubscriberId=" + globalSubscriberId + ", subscriptionServiceType="
79                 + subscriptionServiceType + ", serviceType=" + serviceType + ", additionalProperties="
80                 + additionalProperties + "]";
81     }
82
83 }