public enum NotificationType extends Enum<NotificationType>
Enum Constant and Description |
---|
NOTIF_AUDIT
Flag in eventmask requests ConfD to send audit log events.
|
NOTIF_AUDIT_SYNC
Flag in eventmask which is used in combination with the
NOTIF_AUDIT flag and then implies that the method
Notif.syncAuditNotification(int usid)
must be called for each notification or else the user session
will hang indefinitely |
NOTIF_COMMIT_DIFF
Flag in eventmask requests ConfD to send commit diff events.
|
NOTIF_COMMIT_FAILED
Flag in eventmask requests ConfD to send commit failed events.
|
NOTIF_COMMIT_PROGRESS
Flag in eventmask requests ConfD to send commit progress events.
|
NOTIF_COMMIT_SIMPLE
Flag in eventmask requests ConfD to send commit events.
|
NOTIF_CONFIRMED_COMMIT
Flag in eventmask requests ConfD to send confirmed commit events.
|
NOTIF_CQ_PROGRESS
Flag in eventmask requests NCS to send event for the ncs commit queue
item lifecycle
reload has completed
|
NOTIF_DAEMON
Flag in eventmask requests ConfD to send syslog events.
|
NOTIF_DEVEL
Flag in eventmask requests ConfD to send devel events.
|
NOTIF_FORWARD_INFO
Flag in eventmask requests ConfD to send forward info events.
|
NOTIF_HA_INFO
Flag in eventmask requests ConfD to send HA (high availability) info
events.
|
NOTIF_HA_INFO_SYNC
Flag in eventmask requests ConfD events related to changes of the
current cluster configuration
|
NOTIF_HEALTH_CHECK
Flag in eventmask requests ConfD to send health check events.
|
NOTIF_HEARTBEAT
Flag in eventmask requests ConfD to send heartbeat events.
|
NOTIF_NETCONF
Flag in eventmask requests ConfD to send netconf events.
|
NOTIF_PACKAGE_RELOAD
Flag in eventmask requests NCS to send event when a package
reload has completed
|
NOTIF_REOPEN_LOGS
Flag in eventmask requests ConfD/NCS to send an event when it will
close and reopen its log files
|
NOTIF_SNMPA
Flag in eventmask requests ConfD to send snmpa events.
|
NOTIF_STREAM_EVENT
Flag in eventmask requests ConfD to send event
for a notification stream
|
NOTIF_SUBAGENT_INFO
Flag in eventmask requests ConfD to send subagent info events.
|
NOTIF_TAKEOVER_SYSLOG
Flag in eventmask requests ConfD to send syslog takeover events.
|
NOTIF_UPGRADE_EVENT
Flag in eventmask requests ConfD to send upgrade info events.
|
NOTIF_USER_SESSION
Flag in eventmask requests ConfD to send user session events.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static NotificationType |
valueOf(int i) |
static NotificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationType NOTIF_AUDIT
public static final NotificationType NOTIF_AUDIT_SYNC
Notif.syncAuditNotification(int usid)
must be called for each notification or else the user session
will hang indefinitelypublic static final NotificationType NOTIF_COMMIT_DIFF
public static final NotificationType NOTIF_COMMIT_FAILED
public static final NotificationType NOTIF_COMMIT_PROGRESS
public static final NotificationType NOTIF_COMMIT_SIMPLE
public static final NotificationType NOTIF_CONFIRMED_COMMIT
public static final NotificationType NOTIF_CQ_PROGRESS
public static final NotificationType NOTIF_DAEMON
public static final NotificationType NOTIF_DEVEL
public static final NotificationType NOTIF_FORWARD_INFO
public static final NotificationType NOTIF_HA_INFO
public static final NotificationType NOTIF_HA_INFO_SYNC
public static final NotificationType NOTIF_HEALTH_CHECK
public static final NotificationType NOTIF_HEARTBEAT
public static final NotificationType NOTIF_NETCONF
public static final NotificationType NOTIF_PACKAGE_RELOAD
public static final NotificationType NOTIF_REOPEN_LOGS
public static final NotificationType NOTIF_SNMPA
public static final NotificationType NOTIF_STREAM_EVENT
public static final NotificationType NOTIF_SUBAGENT_INFO
public static final NotificationType NOTIF_TAKEOVER_SYSLOG
public static final NotificationType NOTIF_UPGRADE_EVENT
public static final NotificationType NOTIF_USER_SESSION
public int getValue()
public static NotificationType valueOf(int i)
public static NotificationType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic static NotificationType[] values()
for (NotificationType c : NotificationType.values()) System.out.println(c);