Package com.identityworksllc.iiq.common
Enum AuthUtilities.QuickLinkAccessType
- java.lang.Object
-
- java.lang.Enum<AuthUtilities.QuickLinkAccessType>
-
- com.identityworksllc.iiq.common.AuthUtilities.QuickLinkAccessType
-
- All Implemented Interfaces:
Serializable
,Comparable<AuthUtilities.QuickLinkAccessType>
- Enclosing class:
- AuthUtilities
public static enum AuthUtilities.QuickLinkAccessType extends Enum<AuthUtilities.QuickLinkAccessType>
Indicates the type of access to a QuickLink we are checking
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AuthUtilities.QuickLinkAccessType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AuthUtilities.QuickLinkAccessType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANY
public static final AuthUtilities.QuickLinkAccessType ANY
Check ANY type of access (self or other)
-
OTHER
public static final AuthUtilities.QuickLinkAccessType OTHER
Check whether this user can invoke this QuickLink on other users
-
SELF
public static final AuthUtilities.QuickLinkAccessType SELF
Check whether this user can invoke this QuickLink on themselves
-
-
Method Detail
-
values
public static AuthUtilities.QuickLinkAccessType[] 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 (AuthUtilities.QuickLinkAccessType c : AuthUtilities.QuickLinkAccessType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthUtilities.QuickLinkAccessType 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
-
-