public enum AuthorizationPolicy extends Enum<AuthorizationPolicy>
Enum Constant and Description |
---|
NONE
Use connections acquired from the LDAP connection factory.
|
PROXY
Use proxied authorization with an authorization ID derived from the
proxied authorization ID template.
|
REUSE
Use the connection obtained during LDAP authentication.
|
Modifier and Type | Method and Description |
---|---|
static AuthorizationPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthorizationPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthorizationPolicy NONE
public static final AuthorizationPolicy REUSE
public static final AuthorizationPolicy PROXY
public static AuthorizationPolicy[] values()
for (AuthorizationPolicy c : AuthorizationPolicy.values()) System.out.println(c);
public static AuthorizationPolicy 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 © 2011-2015 ForgeRock AS. All Rights Reserved.