blob: be4eb0dc71177dd5c71186b196701ab9fea07414 [file] [log] [blame]
Praseed Balakrishnan2aa6c0b2014-07-17 11:42:05 -07001package net.onrc.onos.core.topology;
2
3/**
4 * Management status of this element.
5 * <p/>
6 * Note: This status only resembles ONOS's recognition of the element.
7 * This status is orthogonal to the operational state of the D-plane.
8 */
9public enum AdminStatus {
10 /**
11 * ONOS has discovered the element.
12 */
13 ACTIVE,
14 /**
15 * ONOS has not yet discovered the element
16 * or has observed that the element has disappeared.
17 */
18 INACTIVE
19}