blob: 33cea1bad6a3b9cf4ed653d781f975f49007bb71 [file] [log] [blame]
slowr13fa5b02017-08-08 16:32:31 -07001/*
slowr577f3222017-08-28 10:49:08 -07002 * Copyright 2015-present Open Networking Foundation
slowr13fa5b02017-08-08 16:32:31 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.xran.entities;
18
slowr60d4d102017-08-16 18:33:58 -070019import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
20
slowr13fa5b02017-08-08 16:32:31 -070021import java.util.Map;
22import java.util.Set;
23
24/**
25 * Created by dimitris on 7/22/17.
26 */
slowr60d4d102017-08-16 18:33:58 -070027@JsonIgnoreProperties(ignoreUnknown = true)
slowr13fa5b02017-08-08 16:32:31 -070028public class RnibSlice {
29 private long sliceId;
30 private Set<RnibLink> links;
31 private Map<String, String> ran2epc;
32 private long validityPeriod;
33 private Object desiredKpis;
34 private Object deliveredKpis;
35 private Object rrmSonConfiguration;
36
37}