03780231fcccb5add3d955cb52d6dacb6e169c36
[so.git] / common / src / main / java / org / onap / so / serviceinstancebeans / SubscriberInfo.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. 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.serviceinstancebeans;
22
23 import java.io.Serializable;
24
25 import com.fasterxml.jackson.annotation.JsonInclude;
26 import com.fasterxml.jackson.annotation.JsonInclude.Include;
27 import com.fasterxml.jackson.annotation.JsonProperty;
28 import com.fasterxml.jackson.annotation.JsonRootName;
29
30 @JsonRootName(value = "subscriberInfo")
31 @JsonInclude(Include.NON_DEFAULT)
32 public class SubscriberInfo implements Serializable {
33
34         private static final long serialVersionUID = -1750701712128104652L;
35         @JsonProperty("globalSubscriberId")
36     protected String globalSubscriberId;
37         @JsonProperty("subscriberName")
38     protected String subscriberName;
39
40     /**
41      * Gets the value of the globalSubscriberId property.
42      *
43      * @return
44      *     possible object is
45      *     {@link String }
46      *
47      */
48     public String getGlobalSubscriberId() {
49         return globalSubscriberId;
50     }
51
52     /**
53      * Sets the value of the globalSubscriberId property.
54      *
55      * @param value
56      *     allowed object is
57      *     {@link String }
58      *
59      */
60     public void setGlobalSubscriberId(String value) {
61         this.globalSubscriberId = value;
62     }
63
64     /**
65      * Gets the value of the subscriberName property.
66      *
67      * @return
68      *     possible object is
69      *     {@link String }
70      *
71      */
72     public String getSubscriberName() {
73         return subscriberName;
74     }
75
76     /**
77      * Sets the value of the subscriberName property.
78      *
79      * @param value
80      *     allowed object is
81      *     {@link String }
82      *
83      */
84     public void setSubscriberName(String value) {
85         this.subscriberName = value;
86     }
87
88         @Override
89         public String toString() {
90                 return "SubscriberInfo [globalSubscriberId=" + globalSubscriberId
91                                 + ", subscriberName=" + subscriberName + "]";
92         }
93
94 }