7035456d753c44caba5465d73409ad0ffc771bf7
[so.git] /
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.adapters.nssmf.manager.impl.external;
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 import org.onap.so.beans.nsmf.PerfReq;
29 import org.onap.so.beans.nsmf.UeMobilityLevel;
30 import org.onap.so.beans.nsmf.ResourceSharingLevel;
31
32 @JsonInclude(JsonInclude.Include.NON_NULL)
33 @Data
34 public class RanSliceProfile implements Serializable {
35     /*
36      * Reference 3GPP TS 28.541 V16.5.0, Section 6.3.4.
37      */
38
39     private static final long serialVersionUID = 172447042469370448L;
40
41     @JsonProperty(value = "sliceProfileId", required = true)
42     private String sliceProfileId;
43
44     @JsonProperty(value = "sNSSAIList", required = true)
45     private List<String> sNSSAIList;
46
47     @JsonProperty(value = "pLMNIdList", required = true)
48     private List<String> pLMNIdList;
49
50     @JsonProperty(value = "perfReq", required = true)
51     private PerfReq perfReq;
52
53     @JsonInclude(JsonInclude.Include.NON_DEFAULT)
54     @JsonProperty(value = "maxNumberofUEs")
55     private long maxNumberofUEs;
56
57     @JsonProperty(value = "coverageAreaTAList")
58     private List<Integer> coverageAreaTAList;
59
60     @JsonInclude(JsonInclude.Include.NON_DEFAULT)
61     @JsonProperty(value = "latency")
62     private int latency;
63
64     @JsonProperty(value = "uEMobilityLevel")
65     private UeMobilityLevel uEMobilityLevel;
66
67     @JsonProperty(value = "resourceSharingLevel")
68     private ResourceSharingLevel resourceSharingLevel;
69
70 }