gluu
|
公開メンバ関数 | |
String | getParamName () |
String | toString () |
__construct ($parameter="") | |
getParamName () | |
toString () | |
静的公開メンバ関数 | |
static Prompt | fromString (String param) |
static List< Prompt > | fromString (String paramList, String separator) |
static | values () |
公開変数類 | |
NONE =("none") | |
LOGIN =("login") | |
CONSENT =("consent") | |
SELECT_ACCOUNT =("select_account") | |
const | NONE = "none" |
const | LOGIN = "login" |
const | CONSENT = "consent" |
const | SELECT_ACCOUNT = "select_account" |
非公開メンバ関数 | |
Prompt (String paramName) | |
非公開変数類 | |
final String | paramName |
$paramName | |
An ASCII string values that specifies whether the Authorization Server prompts the End-User for re-authentication and consent.
An ASCII string values that specifies whether the Authorization Server prompts the End-User for re-authentication and consent.
|
inlineprivate |
org.xdi.oxauth.model.common.Prompt.__construct | ( | $parameter = "" | ) |
The constructor sets the parameter name
String | Parameter |
|
inlinestatic |
Returns the corresponding Prompt for a parameter prompt of the authorization endpoint.
param | The parameter. |
null
.
|
inlinestatic |
Returns a list of the corresponding Prompt from a space-separated list of prompt parameters.
paramList | A space-separated list of prompt parameters. |
separator | The separator of the string list. |
org.xdi.oxauth.model.common.Prompt.getParamName | ( | ) |
Gets the parameter name entered
org.xdi.oxauth.model.common.HasParamNameを実装しています。
|
inline |
org.xdi.oxauth.model.common.Prompt.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.
|
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 (Prompt::values() as $value) {
return $value;
}
|
private |
const org.xdi.oxauth.model.common.Prompt.CONSENT = "consent" |
The Authorization Server MUST prompt the End-User for consent before returning information to the Client.
org.xdi.oxauth.model.common.Prompt.CONSENT =("consent") |
The Authorization Server MUST prompt the End-User for consent before returning information to the Client.
const org.xdi.oxauth.model.common.Prompt.LOGIN = "login" |
The Authorization Server MUST prompt the End-User for re-authentication
org.xdi.oxauth.model.common.Prompt.LOGIN =("login") |
The Authorization Server MUST prompt the End-User for re-authentication
const org.xdi.oxauth.model.common.Prompt.NONE = "none" |
The Authorization Server MUST NOT display any authentication or consent user interface pages. An error is returned if the End-User is not already authenticated or the Client does not have pre-configured consent for the requested scopes. This can be used as a method to check for existing authentication and/or consent.
org.xdi.oxauth.model.common.Prompt.NONE =("none") |
The Authorization Server MUST NOT display any authentication or consent user interface pages. An error is returned if the End-User is not already authenticated or the Client does not have pre-configured consent for the requested scopes. This can be used as a method to check for existing authentication and/or consent.
|
private |
const org.xdi.oxauth.model.common.Prompt.SELECT_ACCOUNT = "select_account" |
The Authorization Server MUST prompt the End-User to select a user account. This allows a user who has multiple accounts at the Authorization Server to select amongst the multiple accounts that they may have current sessions for.
org.xdi.oxauth.model.common.Prompt.SELECT_ACCOUNT =("select_account") |
The Authorization Server MUST prompt the End-User to select a user account. This allows a user who has multiple accounts at the Authorization Server to select amongst the multiple accounts that they may have current sessions for.