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 |
|---|---|
@Nullable Cont |
getCont() |
@Nullable Grpcont |
getGrpcont() |
@Nullable List<Grplst> |
getGrplst() |
@Nullable List<Lst> |
getLst() |
@Nullable List<Lstio> |
getLstio() |
@Nullable Othercont |
getOthercont() |
default @NonNull List<Grplst> |
nonnullGrplst() |
default @NonNull List<Lst> |
nonnullLst() |
default @NonNull List<Lstio> |
nonnullLstio() |
@Nullable Cont getCont()
org.opendaylight.yang.gen.v1.urn.odl.actions.norev.Cont cont, or null if not presentdefault @NonNull List<Lst> nonnullLst()
java.util.List lst, or an empty list if it is not presentdefault @NonNull List<Lstio> nonnullLstio()
java.util.List lstio, or an empty list if it is not present@Nullable Grpcont getGrpcont()
org.opendaylight.yang.gen.v1.urn.odl.actions.norev.Grpcont grpcont, or null if not presentdefault @NonNull List<Grplst> nonnullGrplst()
java.util.List grplst, or an empty list if it is not present@Nullable Othercont getOthercont()
org.opendaylight.yang.gen.v1.urn.odl.actions.norev.Othercont othercont, or null if not presentCopyright © 2019 OpenDaylight. All rights reserved.