blob: 9d98f1a69673362564360869875be54a0ae5dd6c [file] [log] [blame]
Praseed Balakrishnan2aa6c0b2014-07-17 11:42:05 -07001package net.onrc.onos.core.topology;
2
3/**
4 * State to show configuration state of this element.
5 */
6public enum ConfigState {
7 /**
8 * Existence of the element was not configured, but discovered.
9 */
10 NOT_CONFIGURED,
11 /**
12 * Existence of the element was configured by operator.
13 */
14 CONFIGURED
15}