gluu
|
公開メンバ関数 | |
String | getParamName () |
String | getDisplayName () |
String | getValue () |
Enum<? extends LdapEnum > | resolveByValue (String value) |
String | toString () |
__construct ($parameter="") | |
getParamName () | |
toString () | |
静的公開メンバ関数 | |
[static initializer] | |
static ResponseType | fromString (String param) |
static List< ResponseType > | fromString (String paramList, String separator) |
static boolean | isImplicitFlow (String responseTypes) |
static String [] | toStringArray (ResponseType[] responseTypes) |
static ResponseType | getByValue (String value) |
static | values () |
公開変数類 | |
CODE =("code", "Authorization Code Grant Type") | |
TOKEN =("token", "Implicit Grant Type") | |
ID_TOKEN =("id_token", "ID Token") | |
const | CODE = "code" |
const | TOKEN = "token" |
const | ID_TOKEN = "id_token" |
非公開メンバ関数 | |
ResponseType (String value, String displayName) | |
非公開変数類 | |
final String | value |
final String | displayName |
$paramName | |
静的非公開変数類 | |
static Map< String, ResponseType > | mapByValues = new HashMap<String, ResponseType>() |
This class allows to enumerate and identify the possible values of the parameter response_type for the authorization endpoint.
The client informs the authorization server of the desired grant type.
The authorization endpoint is used by the authorization code grant type and implicit grant type flows.
This class allows to enumerate and identify the possible values of the parameter response_type for the authorization endpoint.
The client informs the authorization server of the desired grant type.
The authorization endpoint is used by the authorization code grant type and implicit grant type flows.
|
inlineprivate |
org.xdi.oxauth.model.common.ResponseType.__construct | ( | $parameter = "" | ) |
|
inlinestatic |
|
inlinestatic |
Returns the corresponding ResponseType for a single parameter response_type.
param | The response_type parameter. |
null
.
|
inlinestatic |
Returns a list of the corresponding ResponseType from a space-separated list of response_type parameters.
paramList | A space-separated list of response_type parameters. |
separator | The separator of the string list. |
|
inlinestatic |
|
inline |
Gets display name
org.xdi.oxauth.model.common.ResponseType.getParamName | ( | ) |
Gets the parameter name entered
org.xdi.oxauth.model.common.HasParamNameを実装しています。
|
inline |
|
inline |
|
inlinestatic |
|
inline |
org.xdi.oxauth.model.common.ResponseType.toString | ( | ) |
Returns a string representation of the object. In this case the parameter name.
|
inline |
Returns a string representation of the object. In this case the parameter name for the response_type parameter.
|
inlinestatic |
|
static |
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:
foreach (ResponseType::values() as $value) {
return $value;
}
|
private |
const org.xdi.oxauth.model.common.ResponseType.CODE = "code" |
Used for the authorization code grant type.
org.xdi.oxauth.model.common.ResponseType.CODE =("code", "Authorization Code Grant Type") |
Used for the authorization code grant type.
|
private |
const org.xdi.oxauth.model.common.ResponseType.ID_TOKEN = "id_token" |
Include an ID Token in the authorization response.
org.xdi.oxauth.model.common.ResponseType.ID_TOKEN =("id_token", "ID Token") |
Include an ID Token in the authorization response.
|
staticprivate |
const org.xdi.oxauth.model.common.ResponseType.TOKEN = "token" |
Used for the implicit grant type.
org.xdi.oxauth.model.common.ResponseType.TOKEN =("token", "Implicit Grant Type") |
Used for the implicit grant type.
|
private |