2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.so.adapters.nssmf.manager.impl.external;
23 import com.fasterxml.jackson.annotation.JsonInclude;
24 import com.fasterxml.jackson.annotation.JsonProperty;
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;
32 @JsonInclude(JsonInclude.Include.NON_NULL)
34 public class RanSliceProfile implements Serializable {
36 * Reference 3GPP TS 28.541 V16.5.0, Section 6.3.4.
39 private static final long serialVersionUID = 172447042469370448L;
41 @JsonProperty(value = "sliceProfileId", required = true)
42 private String sliceProfileId;
44 @JsonProperty(value = "sNSSAIList", required = true)
45 private List<String> sNSSAIList;
47 @JsonProperty(value = "pLMNIdList", required = true)
48 private List<String> pLMNIdList;
50 @JsonProperty(value = "perfReq", required = true)
51 private PerfReq perfReq;
53 @JsonInclude(JsonInclude.Include.NON_DEFAULT)
54 @JsonProperty(value = "maxNumberofUEs")
55 private long maxNumberofUEs;
57 @JsonProperty(value = "coverageAreaTAList")
58 private List<Integer> coverageAreaTAList;
60 @JsonInclude(JsonInclude.Include.NON_DEFAULT)
61 @JsonProperty(value = "latency")
64 @JsonProperty(value = "uEMobilityLevel")
65 private UeMobilityLevel uEMobilityLevel;
67 @JsonProperty(value = "resourceSharingLevel")
68 private ResourceSharingLevel resourceSharingLevel;