Compartir a través de


ActiveDirectoryApplication Interface

Implements

public interface ActiveDirectoryApplication
extends ActiveDirectoryObject, HasInnerModel<MicrosoftGraphApplicationInner>, Updatable<Update>

An immutable client-side representation of an Azure AD application.

Method Summary

Modifier and Type Method and Description
abstract ApplicationAccountType accountType()

Gets the application account type.

abstract String applicationId()

Gets the application ID.

abstract boolean availableToOtherTenants()

Deprecated

use accountType(), false only when account type is "AzureADMyOrg"
abstract Map<String,CertificateCredential> certificateCredentials()

Gets the mapping of certificate credentials from their names.

abstract Set<String> identifierUris()

Gets a collection of URIs for the application.

abstract Map<String,PasswordCredential> passwordCredentials()

Gets the mapping of password credentials from their names.

abstract Set<String> replyUrls()

Gets a collection of reply URLs for the application.

abstract URL signOnUrl()

Gets the home page of the application.

Method Details

accountType

public abstract ApplicationAccountType accountType()

Gets the application account type.

Returns:

the application account type

applicationId

public abstract String applicationId()

Gets the application ID.

Returns:

the application ID

availableToOtherTenants

@Deprecated
public abstract boolean availableToOtherTenants()

Deprecated

use accountType(), false only when account type is "AzureADMyOrg"

Returns:

whether the application is be available to other tenants

certificateCredentials

public abstract Map certificateCredentials()

Gets the mapping of certificate credentials from their names.

Returns:

the mapping of certificate credentials from their names

identifierUris

public abstract Set identifierUris()

Gets a collection of URIs for the application.

Returns:

a collection of URIs for the application

passwordCredentials

public abstract Map passwordCredentials()

Gets the mapping of password credentials from their names.

Returns:

the mapping of password credentials from their names

replyUrls

public abstract Set replyUrls()

Gets a collection of reply URLs for the application.

Returns:

a collection of reply URLs for the application

signOnUrl

public abstract URL signOnUrl()

Gets the home page of the application.

Returns:

the home page of the application

Applies to