Interface PcepErrorObject
- All Superinterfaces:
org.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.DataContainer>,org.opendaylight.yangtools.binding.BindingObject,org.opendaylight.yangtools.binding.DataContainer,org.opendaylight.yangtools.binding.Grouping
- All Known Subinterfaces:
Errors
@Generated("mdsal-binding-generator")
public interface PcepErrorObject
extends org.opendaylight.yangtools.binding.Grouping
PCEP-ERROR Object
This class represents the following YANG schema fragment defined in module pcep-types
grouping pcep-error-object {
container error-object {
uses object;
container tlvs {
when "../type = 7";
uses req-missing-tlv;
uses vendor-information-tlvs;
}
leaf type {
type uint8;
}
leaf value {
type uint8;
}
}
}
-
Method Summary
Modifier and TypeMethodDescriptionReturn errorObject, ornullif it is not present.@NonNull ErrorObjectReturn errorObject, or an empty instance if it is not present.Methods inherited from interface org.opendaylight.yangtools.binding.BindingContract
implementedInterface
-
Method Details
-
getErrorObject
ErrorObject getErrorObject()Return errorObject, ornullif it is not present.- Returns:
ErrorObjecterrorObject, ornullif it is not present.
-
nonnullErrorObject
@NonNull ErrorObject nonnullErrorObject()Return errorObject, or an empty instance if it is not present.- Returns:
ErrorObjecterrorObject, or an empty instance if it is not present.
-