efb447bc00d3e02c038e41565f85d34f0c923254
[so.git] / common / src / main / java / org / onap / so / beans / nsmf / CnSliceProfile.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2020 Huawei Technologies Co., Ltd. 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.beans.nsmf;
22
23 import com.fasterxml.jackson.annotation.JsonInclude;
24 import com.fasterxml.jackson.annotation.JsonProperty;
25 import lombok.Data;
26 import java.io.Serializable;
27 import java.util.List;
28
29 @JsonInclude(JsonInclude.Include.NON_NULL)
30 @Data
31 public class CnSliceProfile implements Serializable {
32
33     private static final long serialVersionUID = 6627071735572539536L;
34
35     @JsonProperty(value = "snssaiList", required = true)
36     private List<String> snssaiList;
37
38     private String sliceProfileId;
39
40     @JsonProperty(value = "plmnIdList", required = true)
41     private List<String> pLMNIdList;
42
43     @JsonProperty(value = "perfReq", required = true)
44     private PerfReq perfReq;
45
46     @JsonProperty(value = "maxNumberofUEs")
47     private int maxNumberOfUEs;
48
49     @JsonProperty(value = "coverageAreaTAList")
50     private List<String> coverageAreaTAList;
51
52     @JsonProperty(value = "latency")
53     private int latency;
54
55     @JsonProperty(value = "uEMobilityLevel")
56     private UeMobilityLevel ueMobilityLevel;
57
58     @JsonProperty(value = "resourceSharingLevel")
59     private ResourceSharingLevel resourceSharingLevel;
60
61     @JsonProperty(value = "maxNumberofPDUSession")
62     private int maxNumberOfPDUSession;
63
64 }