Interface SystemNtpState
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
State
@Generated("mdsal-binding-generator") public interface SystemNtpState extends org.opendaylight.yangtools.yang.binding.DataObject
Operational state data for system-wide NTP operation.This class represents the following YANG schema fragment defined in module openconfig-system
grouping system-ntp-state { leaf auth-mismatch { type oc-yang:counter64; } }The schema path to identify an instance is openconfig-systemsystem-ntp-state
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Counter64getAuthMismatch()Return authMismatch, ornullif it is not present.Class<? extends SystemNtpState>implementedInterface()default @NonNull Counter64requireAuthMismatch()Return authMismatch, guaranteed to be non-null.
-
-
-
Method Detail
-
implementedInterface
Class<? extends SystemNtpState> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getAuthMismatch
Counter64 getAuthMismatch()
Return authMismatch, ornullif it is not present.Count of the number of NTP packets received that were not processed due to authentication mismatch.- Returns:
Counter64authMismatch, ornullif it is not present.
-
requireAuthMismatch
default @NonNull Counter64 requireAuthMismatch()
Return authMismatch, guaranteed to be non-null.Count of the number of NTP packets received that were not processed due to authentication mismatch.- Returns:
Counter64authMismatch, guaranteed to be non-null.- Throws:
NoSuchElementException- if authMismatch is not present
-
-