blob: b3daceed2c164802ebb1e7e96eae61dff5f2d5a9 [file] [log] [blame]
Jan Gelety95c87b52017-02-27 10:46:14 +01001""" VRF Status codes """
2
3from util import NumericConstant
4
5
6class VRFState(NumericConstant):
7 """ VRF State """
8 not_configured = 0
9 configured = 1
10 reset = 2
11
12 desc_dict = {
13 not_configured: "VRF not configured",
14 configured: "VRF configured",
15 reset: "VRF reset",
16 }
17
18 def __init__(self, value):
19 NumericConstant.__init__(self, value)