Package com.avoka.fc.core.security
Enum IFormSubmissionAccessController.JsAppAccessStatus
- java.lang.Object
-
- java.lang.Enum<IFormSubmissionAccessController.JsAppAccessStatus>
-
- com.avoka.fc.core.security.IFormSubmissionAccessController.JsAppAccessStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<IFormSubmissionAccessController.JsAppAccessStatus>
- Enclosing interface:
- IFormSubmissionAccessController
public static enum IFormSubmissionAccessController.JsAppAccessStatus extends Enum<IFormSubmissionAccessController.JsAppAccessStatus>
The JsApp security access status to the submission.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHORIZED
NOT_AUTHENTICATED
NOT_AUTHORIZED
NOT_CHALLENGE_AUTHORIZED
NOT_SUPPORTED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IFormSubmissionAccessController.JsAppAccessStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static IFormSubmissionAccessController.JsAppAccessStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHORIZED
public static final IFormSubmissionAccessController.JsAppAccessStatus AUTHORIZED
-
NOT_AUTHORIZED
public static final IFormSubmissionAccessController.JsAppAccessStatus NOT_AUTHORIZED
-
NOT_CHALLENGE_AUTHORIZED
public static final IFormSubmissionAccessController.JsAppAccessStatus NOT_CHALLENGE_AUTHORIZED
-
NOT_AUTHENTICATED
public static final IFormSubmissionAccessController.JsAppAccessStatus NOT_AUTHENTICATED
-
NOT_SUPPORTED
public static final IFormSubmissionAccessController.JsAppAccessStatus NOT_SUPPORTED
-
-
Method Detail
-
values
public static IFormSubmissionAccessController.JsAppAccessStatus[] 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 (IFormSubmissionAccessController.JsAppAccessStatus c : IFormSubmissionAccessController.JsAppAccessStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IFormSubmissionAccessController.JsAppAccessStatus 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
-
-