Package com.sun.identity.authentication
Class AuthContext.IndexType
- java.lang.Object
-
- com.sun.identity.authentication.AuthContext.IndexType
-
- Enclosing class:
- AuthContext
@SupportedAll public static class AuthContext.IndexType extends Object
The classIndexType
defines the possible kinds of "objects" or "resources" for which an authentication can be performed.
-
-
Field Summary
Fields Modifier and Type Field Description static AuthContext.IndexType
COMPOSITE_ADVICE
TheCOMPOSITE_ADVICE
index type indicates that the index name given corresponds to string in the form of XML representing different Policy Authentication conditions, exampleAuthSchemeCondition
,AuthLevelCondition
, etc.static AuthContext.IndexType
LEVEL
TheLEVEL
index type indicates that the index name given corresponds to a given authentication level.static AuthContext.IndexType
MODULE_INSTANCE
TheMODULE_INSTANCE
index type indicates that the index name given corresponds to one of the authentication modules.static AuthContext.IndexType
RESOURCE
TheRESOURCE
index type indicates that the index name given corresponds to a given policy protected resource URL.static AuthContext.IndexType
ROLE
TheROLE
index type indicates that the index name given corresponds to a role.static AuthContext.IndexType
SERVICE
TheSERVICE
index type indicates that the index name given corresponds to a service (or application).static AuthContext.IndexType
USER
TheUSER
index type indicates that the index name given corresponds to a user.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object indexType)
Checks if two index type objects are equal.int
hashCode()
String
toString()
Returns the string representation of the index type.
-
-
-
Field Detail
-
USER
public static final AuthContext.IndexType USER
TheUSER
index type indicates that the index name given corresponds to a user.
-
ROLE
public static final AuthContext.IndexType ROLE
TheROLE
index type indicates that the index name given corresponds to a role.
-
SERVICE
public static final AuthContext.IndexType SERVICE
TheSERVICE
index type indicates that the index name given corresponds to a service (or application).
-
LEVEL
public static final AuthContext.IndexType LEVEL
TheLEVEL
index type indicates that the index name given corresponds to a given authentication level.
-
MODULE_INSTANCE
public static final AuthContext.IndexType MODULE_INSTANCE
TheMODULE_INSTANCE
index type indicates that the index name given corresponds to one of the authentication modules.
-
RESOURCE
public static final AuthContext.IndexType RESOURCE
TheRESOURCE
index type indicates that the index name given corresponds to a given policy protected resource URL.
-
COMPOSITE_ADVICE
public static final AuthContext.IndexType COMPOSITE_ADVICE
TheCOMPOSITE_ADVICE
index type indicates that the index name given corresponds to string in the form of XML representing different Policy Authentication conditions, exampleAuthSchemeCondition
,AuthLevelCondition
, etc.
-
-