public static enum Constants.ProviderGrantType extends Enum<Constants.ProviderGrantType>
| Enum Constant and Description |
|---|
AUTHORIZATION_CODE |
CLIENT_CREDENTIALS |
IMPLICIT |
RESOURCE_OWNER_PASSWORD_CREDENTIALS |
| Modifier and Type | Method and Description |
|---|---|
Constants.ResponseType |
getAuthorizationResponseType() |
Set<Constants.RequestGrantType> |
getRequestGrantTypes() |
static Constants.ProviderGrantType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.ProviderGrantType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.ProviderGrantType AUTHORIZATION_CODE
public static final Constants.ProviderGrantType IMPLICIT
public static final Constants.ProviderGrantType RESOURCE_OWNER_PASSWORD_CREDENTIALS
public static final Constants.ProviderGrantType CLIENT_CREDENTIALS
public static Constants.ProviderGrantType[] values()
for (Constants.ProviderGrantType c : Constants.ProviderGrantType.values()) System.out.println(c);
public static Constants.ProviderGrantType 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 nullpublic Constants.ResponseType getAuthorizationResponseType()
public Set<Constants.RequestGrantType> getRequestGrantTypes()
Copyright © 2024 MuleSoft, Inc.. All rights reserved.