Enum OIDCAuthorizationConfiguration.OIDCHttpRequestMethod
- java.lang.Object
-
- java.lang.Enum<OIDCAuthorizationConfiguration.OIDCHttpRequestMethod>
-
- net.shibboleth.oidc.profile.config.OIDCAuthorizationConfiguration.OIDCHttpRequestMethod
-
- All Implemented Interfaces:
Serializable,Comparable<OIDCAuthorizationConfiguration.OIDCHttpRequestMethod>
- Enclosing class:
- OIDCAuthorizationConfiguration
public static enum OIDCAuthorizationConfiguration.OIDCHttpRequestMethod extends Enum<OIDCAuthorizationConfiguration.OIDCHttpRequestMethod>
Enumeration of the HTTP methods used in OIDC authentication requests.
-
-
Constructor Summary
Constructors Modifier Constructor Description privateOIDCHttpRequestMethod()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OIDCAuthorizationConfiguration.OIDCHttpRequestMethodvalueOf(String name)Returns the enum constant of this type with the specified name.static OIDCAuthorizationConfiguration.OIDCHttpRequestMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GET
public static final OIDCAuthorizationConfiguration.OIDCHttpRequestMethod GET
HTTP GET.
-
POST
public static final OIDCAuthorizationConfiguration.OIDCHttpRequestMethod POST
HTTP POST.
-
-
Method Detail
-
values
public static OIDCAuthorizationConfiguration.OIDCHttpRequestMethod[] 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 (OIDCAuthorizationConfiguration.OIDCHttpRequestMethod c : OIDCAuthorizationConfiguration.OIDCHttpRequestMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OIDCAuthorizationConfiguration.OIDCHttpRequestMethod 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
-
-