Interface MessageHeader
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
CCloseMessage,KeepaliveMessage,OpenMessage,PcerrMessage,PcinitiateMessage,PcntfMessage,PcrepMessage,PcreqMessage,PcrptMessage,PcupdMessage,StartTlsMessage
@Generated("mdsal-binding-generator") public interface MessageHeader extends org.opendaylight.yangtools.yang.binding.DataObject
Common HeaderThis class represents the following YANG schema fragment defined in module pcep-types
grouping message-header { leaf version { type protocol-version; default 1; } }
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAMEYANG identifier of the statement represented by this class.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ProtocolVersiongetVersion()Return version, ornullif it is not present.Class<? extends MessageHeader>implementedInterface()default @NonNull ProtocolVersionrequireVersion()Return version, guaranteed to be non-null.
-
-
-
Method Detail
-
implementedInterface
Class<? extends MessageHeader> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getVersion
ProtocolVersion getVersion()
Return version, ornullif it is not present.- Returns:
ProtocolVersionversion, ornullif it is not present.
-
requireVersion
default @NonNull ProtocolVersion requireVersion()
Return version, guaranteed to be non-null.- Returns:
ProtocolVersionversion, guaranteed to be non-null.- Throws:
NoSuchElementException- if version is not present
-
-