public enum OperationSecurityStrategy extends Enum<OperationSecurityStrategy>
Enum Constant and Description |
---|
ADMIN_VALIDATION |
NONE |
Modifier and Type | Method and Description |
---|---|
static OperationSecurityStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperationSecurityStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationSecurityStrategy NONE
public static final OperationSecurityStrategy ADMIN_VALIDATION
public static OperationSecurityStrategy[] values()
for (OperationSecurityStrategy c : OperationSecurityStrategy.values()) System.out.println(c);
public static OperationSecurityStrategy 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 nullCopyright © 2017 DocDoku. All rights reserved.