Enum AuthorizedConversationAction
- java.lang.Object
-
- java.lang.Enum<AuthorizedConversationAction>
-
- com.flowable.engage.engine.impl.permission.AuthorizedConversationAction
-
- All Implemented Interfaces:
AuthorizedAction
,Serializable
,Comparable<AuthorizedConversationAction>
public enum AuthorizedConversationAction extends Enum<AuthorizedConversationAction> implements AuthorizedAction
This enumeration contains a list of actions which are authorized as part of the permission check when executing actions in a conversation.- Author:
- Micha Kiener
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getKey()
static AuthorizedConversationAction
parseFromKey(String key)
static AuthorizedConversationAction
valueOf(String name)
Returns the enum constant of this type with the specified name.static AuthorizedConversationAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE_CONVERSATION
public static final AuthorizedConversationAction CREATE_CONVERSATION
-
ARCHIVE_CONVERSATION
public static final AuthorizedConversationAction ARCHIVE_CONVERSATION
-
REOPEN_CONVERSATION
public static final AuthorizedConversationAction REOPEN_CONVERSATION
-
UPDATE_CONVERSATION_NAME
public static final AuthorizedConversationAction UPDATE_CONVERSATION_NAME
-
UPDATE_CONVERSATION_DESCRIPTION
public static final AuthorizedConversationAction UPDATE_CONVERSATION_DESCRIPTION
-
INVITE_PARTICIPANT
public static final AuthorizedConversationAction INVITE_PARTICIPANT
-
JOIN_PARTICIPANT
public static final AuthorizedConversationAction JOIN_PARTICIPANT
-
DROP_PARTICIPANT
public static final AuthorizedConversationAction DROP_PARTICIPANT
-
POST_MESSAGE
public static final AuthorizedConversationAction POST_MESSAGE
-
EDIT_MESSAGE
public static final AuthorizedConversationAction EDIT_MESSAGE
-
POST_VOICE
public static final AuthorizedConversationAction POST_VOICE
-
POST_VIDEO
public static final AuthorizedConversationAction POST_VIDEO
-
POST_DOCUMENT
public static final AuthorizedConversationAction POST_DOCUMENT
-
POST_IMAGE
public static final AuthorizedConversationAction POST_IMAGE
-
-
Method Detail
-
values
public static AuthorizedConversationAction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AuthorizedConversationAction c : AuthorizedConversationAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthorizedConversationAction valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getKey
public String getKey()
- Specified by:
getKey
in interfaceAuthorizedAction
-
parseFromKey
public static AuthorizedConversationAction parseFromKey(String key)
-
-