Interface DefaultDenyAllSchemaNode
-
- All Superinterfaces:
AddedByUsesAware
,CopyableNode
,DocumentedNode
,DocumentedNode.WithStatus
,EffectiveStatementEquivalent<UnknownEffectiveStatement<?,?>>
,SchemaNode
,UnknownSchemaNode
@Beta public interface DefaultDenyAllSchemaNode extends UnknownSchemaNode
Represents the effect of 'default-deny-all' extension, as defined in RFC6536, being attached to a SchemaNode.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.opendaylight.yangtools.yang.model.api.DocumentedNode
DocumentedNode.WithStatus
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description DefaultDenyAllEffectiveStatement
asEffectiveStatement()
ReturnEffectiveStatement
representation of this object.static Optional<DefaultDenyAllSchemaNode>
findIn(DataSchemaNode parent)
Attempt to find aDefaultDenyAllSchemaNode
in a parentDataSchemaNode
.-
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.AddedByUsesAware
isAddedByUses
-
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.CopyableNode
isAugmenting
-
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.DocumentedNode
getDescription, getReference, getUnknownSchemaNodes
-
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.DocumentedNode.WithStatus
getStatus
-
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.SchemaNode
getPath, getQName
-
Methods inherited from interface org.opendaylight.yangtools.yang.model.api.UnknownSchemaNode
getExtensionDefinition, getNodeParameter, getNodeType
-
-
-
-
Method Detail
-
findIn
static Optional<DefaultDenyAllSchemaNode> findIn(DataSchemaNode parent)
Attempt to find aDefaultDenyAllSchemaNode
in a parentDataSchemaNode
.- Parameters:
parent
- Parent to search- Returns:
DefaultDenyAllSchemaNode
child, if present.
-
asEffectiveStatement
DefaultDenyAllEffectiveStatement asEffectiveStatement()
Description copied from interface:EffectiveStatementEquivalent
ReturnEffectiveStatement
representation of this object.- Specified by:
asEffectiveStatement
in interfaceEffectiveStatementEquivalent<UnknownEffectiveStatement<?,?>>
- Returns:
EffectiveStatement
representation of this object.
-
-