blob: 91bf24844c51e7dabf25b98a2cfcfb7554b0ec26 [file] [log] [blame]
janani bf41dec32017-03-24 18:44:07 +05301/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
janani bf41dec32017-03-24 18:44:07 +05303 *
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.l3vpn.netl3vpn;
18
19/**
janani b9ed76be2017-08-29 19:11:33 +053020 * Represents the model id level to add it in the store.
21 * //TODO: Further levels has to be added.
janani bf41dec32017-03-24 18:44:07 +053022 */
janani b9ed76be2017-08-29 19:11:33 +053023public enum ModelIdLevel {
janani bf41dec32017-03-24 18:44:07 +053024
25 /**
26 * Requested model id level is not present, representing top node.
27 */
28 ROOT,
29
30 /**
31 * Requested model id level is devices container.
32 */
33 DEVICES,
34
35 /**
36 * Requested model id level is device list.
37 */
janani bd821b182017-03-30 16:34:49 +053038 DEVICE,
39
40 /**
41 * Requested model id level is VPN list.
42 */
janani b9ed76be2017-08-29 19:11:33 +053043 VPN,
44
45 /**
46 * Requested model id level is tunnel manager.
47 */
48 TNL_M,
49
50 /**
51 * Requested model id level is tunnel policy.
52 */
53 TNL_POL,
54
55 /**
56 * Requested model id level is tunnel hop.
57 */
58 TP_HOP
janani bf41dec32017-03-24 18:44:07 +053059}