public interface ActionsData extends DataRoot
This class represents the following YANG schema fragment defined in module actions
module actions { yang-version 1.1; prefix act; namespace urn:odl:actions; container cont { action foo { input { leaf xyzzy { type string; } } output; } } list lst { key key; leaf key { type string; } action foo { input; output; } } list lstio { key keyio; leaf keyio { type string; } action fooio { input { leaf fooi { type string; } } output { leaf fooo { type string; } } } } grouping grp { action bar { output { leaf xyzzy { type string; } } input; } } grouping other { uses grp; } container grpcont { uses grp; } list grplst { key key; leaf key { type string; } uses grp; } container othercont { uses other; } }
Modifier and Type | Method and Description |
---|---|
Cont |
getCont() |
Grpcont |
getGrpcont() |
List<Grplst> |
getGrplst() |
List<Lst> |
getLst() |
List<Lstio> |
getLstio() |
Othercont |
getOthercont() |
Copyright © 2018 OpenDaylight. All rights reserved.