public static enum ProcessStoreEvent.Type extends java.lang.Enum<ProcessStoreEvent.Type>
Enum Constant and Description |
---|
ACTVIATED
A process that was previously disabled or retired has become activated.
|
DEPLOYED
A process was deployed to the store.
|
DISABLED
A process has been disabled: it should no longer execute for new or old instances.
|
PROPERTY_CHANGED
A process property was changed.
|
RETIRED
A process has been retired (i.e.
|
SCHEDULE_SETTINGS_CHANGED
Cron schedule settings have been changed for the process
|
UNDEPLOYED
A process was undeployed to from the store.
|
Modifier and Type | Method and Description |
---|---|
static ProcessStoreEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessStoreEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessStoreEvent.Type DEPLOYED
public static final ProcessStoreEvent.Type UNDEPLOYED
public static final ProcessStoreEvent.Type RETIRED
public static final ProcessStoreEvent.Type ACTVIATED
public static final ProcessStoreEvent.Type DISABLED
public static final ProcessStoreEvent.Type PROPERTY_CHANGED
public static final ProcessStoreEvent.Type SCHEDULE_SETTINGS_CHANGED
public static ProcessStoreEvent.Type[] values()
for (ProcessStoreEvent.Type c : ProcessStoreEvent.Type.values()) System.out.println(c);
public static ProcessStoreEvent.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null