public static class AuthorizationRequestUrlParameters.Builder extends Object
| Constructor and Description |
|---|
Builder() |
| Modifier and Type | Method and Description |
|---|---|
AuthorizationRequestUrlParameters |
build() |
AuthorizationRequestUrlParameters.Builder |
claims(Set<String> val)
Deprecated.
|
AuthorizationRequestUrlParameters.Builder |
claimsChallenge(String val)
In cases where Azure AD tenant admin has enabled conditional access policies, and the
policy has not been met,
MsalServiceException will contain claims that need be
consented to. |
AuthorizationRequestUrlParameters.Builder |
codeChallenge(String val)
Used to secure authorization code grant via Proof of Key for Code Exchange (PKCE).
|
AuthorizationRequestUrlParameters.Builder |
codeChallengeMethod(String val)
The method used to encode the code verifier for the code challenge parameter.
|
AuthorizationRequestUrlParameters.Builder |
correlationId(String val)
Identifier used to correlate requests for telemetry purposes.
|
AuthorizationRequestUrlParameters.Builder |
domainHint(String val)
Provides a hint about the tenant or domain that the user should use to sign in.
|
AuthorizationRequestUrlParameters.Builder |
loginHint(String val)
Can be used to pre-fill the username/email address field of the sign-in page for the user,
if you know the username/email address ahead of time.
|
AuthorizationRequestUrlParameters.Builder |
nonce(String val)
A value included in the request that is also returned in the token response.
|
AuthorizationRequestUrlParameters.Builder |
prompt(Prompt val)
Indicates the type of user interaction that is required.
|
AuthorizationRequestUrlParameters.Builder |
redirectUri(String val)
The redirect URI where authentication responses can be received by your application.
|
AuthorizationRequestUrlParameters.Builder |
responseMode(ResponseMode val)
Specifies the method that should be used to send the authentication result to your app.
|
AuthorizationRequestUrlParameters.Builder |
scopes(Set<String> val)
Scopes which the application is requesting access to and the user will consent to.
|
AuthorizationRequestUrlParameters.Builder |
state(String val)
A value included in the request that is also returned in the token response.
|
public AuthorizationRequestUrlParameters build()
public AuthorizationRequestUrlParameters.Builder redirectUri(String val)
public AuthorizationRequestUrlParameters.Builder scopes(Set<String> val)
@Deprecated public AuthorizationRequestUrlParameters.Builder claims(Set<String> val)
MsalServiceException will contain claims that need be
consented to.
Deprecated in favor of claimsChallenge(String)public AuthorizationRequestUrlParameters.Builder claimsChallenge(String val)
MsalServiceException will contain claims that need be
consented to.public AuthorizationRequestUrlParameters.Builder codeChallenge(String val)
public AuthorizationRequestUrlParameters.Builder codeChallengeMethod(String val)
public AuthorizationRequestUrlParameters.Builder state(String val)
public AuthorizationRequestUrlParameters.Builder nonce(String val)
public AuthorizationRequestUrlParameters.Builder responseMode(ResponseMode val)
public AuthorizationRequestUrlParameters.Builder loginHint(String val)
public AuthorizationRequestUrlParameters.Builder domainHint(String val)
public AuthorizationRequestUrlParameters.Builder prompt(Prompt val)
Promptpublic AuthorizationRequestUrlParameters.Builder correlationId(String val)
Copyright © 2013–2020. All rights reserved.