Interface OutOfPixieDustNotification
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<OutOfPixieDustNotification>,org.opendaylight.yangtools.yang.binding.BaseNotification,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject,org.opendaylight.yangtools.yang.binding.Notification
public interface OutOfPixieDustNotification extends org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.Augmentable<OutOfPixieDustNotification>, org.opendaylight.yangtools.yang.binding.Notification
Just a testing notification that we can not fly for now.This class represents the following YANG schema fragment defined in module opendaylight-test-notification
notification out-of-pixie-dust-notification { leaf reason { type string; } leaf days-till-new-dust { type uint16; } }The schema path to identify an instance is opendaylight-test-notification/out-of-pixie-dust-notificationTo create instances of this class use
OutOfPixieDustNotificationBuilder.- See Also:
OutOfPixieDustNotificationBuilder
-
-
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 @Nullable org.opendaylight.yangtools.yang.common.Uint16getDaysTillNewDust()@Nullable StringgetReason()default Class<OutOfPixieDustNotification>implementedInterface()
-
-
-
Method Detail
-
implementedInterface
default Class<OutOfPixieDustNotification> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getReason
@Nullable String getReason()
- Returns:
java.lang.Stringreason, ornullif not present
-
getDaysTillNewDust
@Nullable org.opendaylight.yangtools.yang.common.Uint16 getDaysTillNewDust()
- Returns:
org.opendaylight.yangtools.yang.common.Uint16daysTillNewDust, ornullif not present
-
-