Interface EffectiveStatementMixins.OperationDefinitionMixin<D extends DeclaredStatement<QName>>
- Type Parameters:
D
- Class representing declared version of this statement.
- All Superinterfaces:
DocumentedNode
,DocumentedNode.WithStatus
,EffectiveStatement<QName,
,D> EffectiveStatementMixins.DocumentedNodeMixin<QName,
,D> EffectiveStatementMixins.DocumentedNodeMixin.WithStatus<QName,
,D> EffectiveStatementMixins.EffectiveStatementWithFlags<QName,
,D> EffectiveStatementMixins.SchemaNodeMixin<D>
,ModelStatement<QName>
,OperationDefinition
,SchemaNode
- All Known Implementing Classes:
ActionEffectiveStatementImpl
,RpcEffectiveStatementImpl
- Enclosing class:
- EffectiveStatementMixins
public static interface EffectiveStatementMixins.OperationDefinitionMixin<D extends DeclaredStatement<QName>>
extends EffectiveStatementMixins.SchemaNodeMixin<D>, OperationDefinition
Helper bridge for
rpc
and action
operations.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.opendaylight.yangtools.yang.model.api.DocumentedNode
DocumentedNode.WithStatus
Nested classes/interfaces inherited from interface org.opendaylight.yangtools.yang.model.spi.meta.EffectiveStatementMixins.DocumentedNodeMixin
EffectiveStatementMixins.DocumentedNodeMixin.WithStatus<A,
D extends DeclaredStatement<A>> Nested classes/interfaces inherited from interface org.opendaylight.yangtools.yang.model.spi.meta.EffectiveStatementMixins.EffectiveStatementWithFlags
EffectiveStatementMixins.EffectiveStatementWithFlags.FlagsBuilder
-
Method Summary
Modifier and TypeMethodDescriptiondefault <T> @NonNull Collection<? extends @NonNull T>
filterEffectiveStatements
(Class<T> type) default Collection<? extends @NonNull GroupingDefinition>
Returns the set of grouping statements declared under this operation.default InputSchemaNode
getInput()
Returns definition of input parameters for this operation.default OutputSchemaNode
Returns definition of output parameters for this operation.default Collection<? extends @NonNull TypeDefinition<?>>
Returns the set of type definitions declared under this operation.Methods inherited from interface org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement
collectEffectiveSubstatements, effectiveSubstatements, findFirstEffectiveSubstatement, findFirstEffectiveSubstatementArgument, getDeclared, statementOrigin, streamEffectiveSubstatements
Methods inherited from interface org.opendaylight.yangtools.yang.model.spi.meta.EffectiveStatementMixins.DocumentedNodeMixin
getDescription, getReference, getUnknownSchemaNodes
Methods inherited from interface org.opendaylight.yangtools.yang.model.spi.meta.EffectiveStatementMixins.DocumentedNodeMixin.WithStatus
getStatus
Methods inherited from interface org.opendaylight.yangtools.yang.model.spi.meta.EffectiveStatementMixins.EffectiveStatementWithFlags
flags
Methods inherited from interface org.opendaylight.yangtools.yang.model.spi.meta.EffectiveStatementMixins.SchemaNodeMixin
getQName
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.meta.ModelStatement
argument, statementDefinition
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.OperationDefinition
toContainerLike
-
Method Details
-
getTypeDefinitions
Description copied from interface:OperationDefinition
Returns the set of type definitions declared under this operation.- Specified by:
getTypeDefinitions
in interfaceOperationDefinition
- Returns:
- Set of type definitions declared under this operation.
-
getGroupings
Description copied from interface:OperationDefinition
Returns the set of grouping statements declared under this operation.- Specified by:
getGroupings
in interfaceOperationDefinition
- Returns:
- Set of grouping statements declared under this operation.
-
getInput
Description copied from interface:OperationDefinition
Returns definition of input parameters for this operation.- Specified by:
getInput
in interfaceOperationDefinition
- Returns:
- Definition of input parameters for this operation. The substatements of input define nodes under the operation's input node.
-
getOutput
Description copied from interface:OperationDefinition
Returns definition of output parameters for this operation.- Specified by:
getOutput
in interfaceOperationDefinition
- Returns:
- Definition of output parameters for this operation. The substatements of output define nodes under the operation's output node.
-
filterEffectiveStatements
-