AzureActiveDirectoryLogin Class

  • java.lang.Object
    • com.azure.resourcemanager.appservice.models.AzureActiveDirectoryLogin

public final class AzureActiveDirectoryLogin

The configuration settings of the Azure Active Directory login flow.

Constructor Summary

Constructor Description
AzureActiveDirectoryLogin()

Creates an instance of AzureActiveDirectoryLogin class.

Method Summary

Modifier and Type Method and Description
Boolean disableWwwAuthenticate()

Get the disableWwwAuthenticate property: true if the www-authenticate provider should be omitted from the request; otherwise, false.

List<String> loginParameters()

Get the loginParameters property: Login parameters to send to the OpenID Connect authorization endpoint when a user logs in.

void validate()

Validates the instance.

AzureActiveDirectoryLogin withDisableWwwAuthenticate(Boolean disableWwwAuthenticate)

Set the disableWwwAuthenticate property: true if the www-authenticate provider should be omitted from the request; otherwise, false.

AzureActiveDirectoryLogin withLoginParameters(List<String> loginParameters)

Set the loginParameters property: Login parameters to send to the OpenID Connect authorization endpoint when a user logs in.

Methods inherited from java.lang.Object

Constructor Details

AzureActiveDirectoryLogin

public AzureActiveDirectoryLogin()

Creates an instance of AzureActiveDirectoryLogin class.

Method Details

disableWwwAuthenticate

public Boolean disableWwwAuthenticate()

Get the disableWwwAuthenticate property: true if the www-authenticate provider should be omitted from the request; otherwise, false.

Returns:

the disableWwwAuthenticate value.

loginParameters

public List loginParameters()

Get the loginParameters property: Login parameters to send to the OpenID Connect authorization endpoint when a user logs in. Each parameter must be in the form "key=value".

Returns:

the loginParameters value.

validate

public void validate()

Validates the instance.

withDisableWwwAuthenticate

public AzureActiveDirectoryLogin withDisableWwwAuthenticate(Boolean disableWwwAuthenticate)

Set the disableWwwAuthenticate property: true if the www-authenticate provider should be omitted from the request; otherwise, false.

Parameters:

disableWwwAuthenticate - the disableWwwAuthenticate value to set.

Returns:

the AzureActiveDirectoryLogin object itself.

withLoginParameters

public AzureActiveDirectoryLogin withLoginParameters(List loginParameters)

Set the loginParameters property: Login parameters to send to the OpenID Connect authorization endpoint when a user logs in. Each parameter must be in the form "key=value".

Parameters:

loginParameters - the loginParameters value to set.

Returns:

the AzureActiveDirectoryLogin object itself.

Applies to