blob: b3daceed2c164802ebb1e7e96eae61dff5f2d5a9 [file] [log] [blame]
""" VRF Status codes """
from util import NumericConstant
class VRFState(NumericConstant):
""" VRF State """
not_configured = 0
configured = 1
reset = 2
desc_dict = {
not_configured: "VRF not configured",
configured: "VRF configured",
reset: "VRF reset",
}
def __init__(self, value):
NumericConstant.__init__(self, value)