public enum UserExtensionPointEvent extends java.lang.Enum<UserExtensionPointEvent> implements ExtensionPointEvent
| Enum Constant and Description |
|---|
ACTIVATE |
CHANGE_GROUP |
CHANGE_STATUS |
CREATE |
UPDATE |
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
ATTR_COMMENTS
Scripting attribute: the comments on a group / status change
|
static java.lang.String |
ATTR_NEW_GROUP
Scripting attribute: the new user group
|
static java.lang.String |
ATTR_NEW_STATUS
Scripting attribute: the new user status
|
static java.lang.String |
ATTR_OLD_GROUP
Scripting attribute: the old user group
|
static java.lang.String |
ATTR_OLD_STATUS
Scripting attribute: the old user status
|
static java.lang.String |
ATTR_USER
Scripting attribute: the user being affected
|
| Modifier and Type | Method and Description |
|---|---|
ExtensionPointNature |
nature()
Returns the nature of this set of events
|
static UserExtensionPointEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserExtensionPointEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfnamepublic static final UserExtensionPointEvent CREATE
public static final UserExtensionPointEvent ACTIVATE
public static final UserExtensionPointEvent UPDATE
public static final UserExtensionPointEvent CHANGE_GROUP
public static final UserExtensionPointEvent CHANGE_STATUS
public static final java.lang.String ATTR_USER
public static final java.lang.String ATTR_OLD_STATUS
public static final java.lang.String ATTR_NEW_STATUS
public static final java.lang.String ATTR_OLD_GROUP
public static final java.lang.String ATTR_NEW_GROUP
public static final java.lang.String ATTR_COMMENTS
public static UserExtensionPointEvent[] values()
for (UserExtensionPointEvent c : UserExtensionPointEvent.values()) System.out.println(c);
public static UserExtensionPointEvent 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 nullpublic ExtensionPointNature nature()
ExtensionPointEventnature in interface ExtensionPointEvent