Enum OidcClientAuthenticationMethodType
- java.lang.Object
-
- java.lang.Enum<OidcClientAuthenticationMethodType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.OidcClientAuthenticationMethodType
-
- All Implemented Interfaces:
Serializable
,Comparable<OidcClientAuthenticationMethodType>
public enum OidcClientAuthenticationMethodType extends Enum<OidcClientAuthenticationMethodType>
Possible client authentication methods.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLIENT_SECRET_BASIC
CLIENT_SECRET_JWT
CLIENT_SECRET_POST
PRIVATE_KEY_JWT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OidcClientAuthenticationMethodType
fromValue(String v)
String
value()
static OidcClientAuthenticationMethodType
valueOf(String name)
Returns the enum constant of this type with the specified name.static OidcClientAuthenticationMethodType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLIENT_SECRET_BASIC
public static final OidcClientAuthenticationMethodType CLIENT_SECRET_BASIC
-
CLIENT_SECRET_POST
public static final OidcClientAuthenticationMethodType CLIENT_SECRET_POST
-
CLIENT_SECRET_JWT
public static final OidcClientAuthenticationMethodType CLIENT_SECRET_JWT
-
PRIVATE_KEY_JWT
public static final OidcClientAuthenticationMethodType PRIVATE_KEY_JWT
-
-
Method Detail
-
values
public static OidcClientAuthenticationMethodType[] 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 (OidcClientAuthenticationMethodType c : OidcClientAuthenticationMethodType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OidcClientAuthenticationMethodType 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
-
value
public String value()
-
fromValue
public static OidcClientAuthenticationMethodType fromValue(String v)
-
-