51466850586f01d7673ea1756bcb6b8f9d16a5d8
[so.git] / common / src / main / java / org / onap / so / beans / nsmf / ServiceInfo.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  # Copyright (c) 2020, CMCC Technologies Co., Ltd.
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 package org.onap.so.beans.nsmf;
21
22 import com.fasterxml.jackson.annotation.JsonInclude;
23 import lombok.AllArgsConstructor;
24 import lombok.Builder;
25 import lombok.Data;
26 import lombok.NoArgsConstructor;
27 import java.io.Serializable;
28
29 @JsonInclude(JsonInclude.Include.NON_NULL)
30 @Data
31 @Builder
32 @NoArgsConstructor
33 @AllArgsConstructor
34 public class ServiceInfo implements Serializable {
35
36     private static final long serialVersionUID = 7895110339097615695L;
37
38     private String serviceInvariantUuid;
39
40     private String serviceUuid;
41
42     private String globalSubscriberId;
43
44     private String subscriptionServiceType;
45
46     private String serviceType;
47
48     private String nsiId;
49
50     private String nssiId;
51
52     private String sST;
53
54     private String nssiName;
55
56     private String pLMNIdList;
57
58     private String actionType;
59 }