X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fmodel%2Fmodel-flow-base%2Fsrc%2Fmain%2Fyang%2Fopendaylight-action-types.yang;h=041fc576a112582c5804ec126ddd2067dda69895;hb=64b94e7c2026f0e2b3fc74094db94f854f47ba90;hp=43754a1dfdad4e7d8354d43005ed52661e47c202;hpb=dab6acc5f42e8cdfbc8318012a8860677c59bdf8;p=controller.git diff --git a/opendaylight/md-sal/model/model-flow-base/src/main/yang/opendaylight-action-types.yang b/opendaylight/md-sal/model/model-flow-base/src/main/yang/opendaylight-action-types.yang index 43754a1dfd..041fc576a1 100644 --- a/opendaylight/md-sal/model/model-flow-base/src/main/yang/opendaylight-action-types.yang +++ b/opendaylight/md-sal/model/model-flow-base/src/main/yang/opendaylight-action-types.yang @@ -30,12 +30,20 @@ module opendaylight-action-types { } } + container action-types { + uses action-list; + } + + grouping ordered { + leaf order { + type int32; + } + } + grouping action-list { list action { key "order"; - leaf order { - type int32; - } + uses ordered; uses action; } } @@ -49,9 +57,7 @@ module opendaylight-action-types { } leaf max-length { - type uint16 { - range "0..65294"; - } + type uint16; } } } @@ -59,9 +65,7 @@ module opendaylight-action-types { case controller-action-case { container controller-action { leaf max-length { - type uint16 { - range "0..65294"; - } + type uint16; } } }