blob: ae0056176818f392b45127216f5aea34db8530a5 [file] [log] [blame]
pierventre1483e642016-06-08 18:52:29 +02001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
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.sdxl2;
18
19/**
20 * Representation of the states the SDX-L2 resources may attain during the time.
21 */
22public enum SdxL2State {
23
24 /**
25 * Signifies that the resource is available.
26 */
27 ONLINE,
28
29 /**
30 * Signifies that the resource is not available (currently).
31 */
32 OFFLINE,
33
34 /**
35 * Signifies that the resource has some problems. Further
36 * investigation is needed.
37 *
38 */
39 CHECK
40
41}