InteractiveRequestParameters.InteractiveRequestParametersBuilder Class
- java.
lang. Object - com.
microsoft. aad. msal4j. InteractiveRequestParameters. InteractiveRequestParametersBuilder
- com.
public static class InteractiveRequestParameters.InteractiveRequestParametersBuilder
Method Summary
Modifier and Type | Method and Description |
---|---|
Interactive |
build() |
Interactive |
claims(ClaimsRequest claims)
Claims to be requested through the OIDC claims request parameter, allowing requests for standard and custom claims |
Interactive |
claimsChallenge(String claimsChallenge) |
Interactive |
domainHint(String domainHint)
Provides a hint about the tenant or domain that the user should use to sign in. |
Interactive |
extraHttpHeaders(Map<String,String> extraHttpHeaders)
Adds additional headers to the token request |
Interactive |
extraQueryParameters(Map<String,String> extraQueryParameters)
Adds additional query parameters to the token request |
Interactive |
httpPollingTimeoutInSeconds(int httpPollingTimeoutInSeconds)
The amount of time in seconds that the library will wait for an authentication result. |
Interactive |
instanceAware(boolean instanceAware)
If set to true, the authorization result will contain the authority for the user's home cloud, and this authority will be used for the token request instead of the authority set in the application. |
Interactive |
loginHint(String loginHint)
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. |
Interactive |
prompt(Prompt prompt)
Indicate the type of user interaction that is required. |
Interactive |
proofOfPossession(HttpMethod httpMethod, URI uri, String nonce)
Sets the Pop |
Interactive |
redirectUri(@NonNull URI redirectUri)
Redirect URI where MSAL will listen to for the authorization code returned by Azure AD. |
Interactive |
scopes(Set<String> scopes)
Scopes that the application is requesting access to and the user will consent to. |
Interactive |
systemBrowserOptions(SystemBrowserOptions systemBrowserOptions)
Sets SystemBrowserOptions to be used by the Public |
Interactive |
tenant(String tenant)
Overrides the tenant value in the authority URL for this request |
java.lang.String | toString() |
Interactive |
windowHandle(long windowHandle)
The parent window handle used to open UI elements with the correct parent For browser scenarios and Windows console applications, this value should not need to be set For Windows console applications, MSAL Java will attempt to discover the console's window handle if this parameter is not set For scenarios where MSAL Java is responsible for opening UI elements (such as when using MSALRuntime), this parameter is required and an exception will be thrown if not set |
Methods inherited from java.lang.Object
Method Details
build
public InteractiveRequestParameters build()
claims
public InteractiveRequestParameters.InteractiveRequestParametersBuilder claims(ClaimsRequest claims)
Claims to be requested through the OIDC claims request parameter, allowing requests for standard and custom claims
Parameters:
Returns:
this
.claimsChallenge
public InteractiveRequestParameters.InteractiveRequestParametersBuilder claimsChallenge(String claimsChallenge)
Parameters:
Returns:
this
.domainHint
public InteractiveRequestParameters.InteractiveRequestParametersBuilder domainHint(String domainHint)
Provides a hint about the tenant or domain that the user should use to sign in. The value of the domain hint is a registered domain for the tenant.
Parameters:
Returns:
this
.extraHttpHeaders
public InteractiveRequestParameters.InteractiveRequestParametersBuilder extraHttpHeaders(Map
Adds additional headers to the token request
Parameters:
Returns:
this
.extraQueryParameters
public InteractiveRequestParameters.InteractiveRequestParametersBuilder extraQueryParameters(Map
Adds additional query parameters to the token request
Parameters:
Returns:
this
.httpPollingTimeoutInSeconds
public InteractiveRequestParameters.InteractiveRequestParametersBuilder httpPollingTimeoutInSeconds(int httpPollingTimeoutInSeconds)
The amount of time in seconds that the library will wait for an authentication result. 120 seconds is the default timeout, unless overridden here with some other positive integer If this timeout is set to 0 or less it will be ignored, and the library will use a 1 second timeout instead
Parameters:
Returns:
this
.instanceAware
public InteractiveRequestParameters.InteractiveRequestParametersBuilder instanceAware(boolean instanceAware)
If set to true, the authorization result will contain the authority for the user's home cloud, and this authority will be used for the token request instead of the authority set in the application.
Parameters:
Returns:
this
.loginHint
public InteractiveRequestParameters.InteractiveRequestParametersBuilder loginHint(String loginHint)
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. Often apps use this parameter during re-authentication, having already extracted the username from a previous sign-in using the preferred_username claim.
Parameters:
Returns:
this
.prompt
public InteractiveRequestParameters.InteractiveRequestParametersBuilder prompt(Prompt prompt)
Indicate the type of user interaction that is required.
Parameters:
Returns:
this
.proofOfPossession
public InteractiveRequestParameters.InteractiveRequestParametersBuilder proofOfPossession(HttpMethod httpMethod, URI uri, String nonce)
Sets the PopParameters for this request, allowing the request to retrieve proof-of-possession tokens rather than bearer tokens For more information, see PopParameters and https://aka.ms/msal4j-pop
Parameters:
redirectUri
public InteractiveRequestParameters.InteractiveRequestParametersBuilder redirectUri(@NonNull URI redirectUri)
Redirect URI where MSAL will listen to for the authorization code returned by Azure AD. Should be a loopback address with a port specified (for example, http://localhost:3671). If no port is specified, MSAL will find an open port. For more information, see https://aka.ms/msal4j-interactive-request.
Parameters:
Returns:
this
.scopes
public InteractiveRequestParameters.InteractiveRequestParametersBuilder scopes(Set
Scopes that the application is requesting access to and the user will consent to.
Parameters:
Returns:
this
.systemBrowserOptions
public InteractiveRequestParameters.InteractiveRequestParametersBuilder systemBrowserOptions(SystemBrowserOptions systemBrowserOptions)
Sets SystemBrowserOptions to be used by the PublicClientApplication
Parameters:
Returns:
this
.tenant
public InteractiveRequestParameters.InteractiveRequestParametersBuilder tenant(String tenant)
Overrides the tenant value in the authority URL for this request
Parameters:
Returns:
this
.toString
public String toString()
Overrides:
InteractiveRequestParameters.InteractiveRequestParametersBuilder.toString()windowHandle
public InteractiveRequestParameters.InteractiveRequestParametersBuilder windowHandle(long windowHandle)
The parent window handle used to open UI elements with the correct parent For browser scenarios and Windows console applications, this value should not need to be set For Windows console applications, MSAL Java will attempt to discover the console's window handle if this parameter is not set For scenarios where MSAL Java is responsible for opening UI elements (such as when using MSALRuntime), this parameter is required and an exception will be thrown if not set
Parameters:
Returns:
this
.