X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fmodel%2Fmodel-flow-base%2Fsrc%2Fmain%2Fyang%2Fopendaylight-flow-types.yang;h=2bcd40522330901eaaf08824d68680cfdb48d381;hp=6e87cc6f1c5642530c7175bcc7774da93824317e;hb=b0e7185fad12a83f2d4afbd74e4bb9a81fd6909c;hpb=c0497aa3c01474dd6c65a2b4f149feffc12ed90b diff --git a/opendaylight/md-sal/model/model-flow-base/src/main/yang/opendaylight-flow-types.yang b/opendaylight/md-sal/model/model-flow-base/src/main/yang/opendaylight-flow-types.yang index 6e87cc6f1c..2bcd405223 100644 --- a/opendaylight/md-sal/model/model-flow-base/src/main/yang/opendaylight-flow-types.yang +++ b/opendaylight/md-sal/model/model-flow-base/src/main/yang/opendaylight-flow-types.yang @@ -12,8 +12,40 @@ module opendaylight-flow-types { description "Initial revision of flow service"; } - typedef table-id { - type uint8; + typedef output-port-values { + type enumeration { + enum MAX { + value 1; + } + enum IN_PORT { + value 2; + } + enum TABLE { + value 3; + } + enum NORMAL { + value 4; + } + enum FLOOD { + value 5; + } + enum ALL { + value 6; + } + enum CONTROLLER { + value 7; + } + enum LOCAL { + value 8; + } + enum ANY { + value 9; + } + enum NONE { + value 10; + } + + } } grouping instruction-list { list instruction { @@ -230,4 +262,4 @@ module opendaylight-flow-types { uses match:match; } } -} \ No newline at end of file +}