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()
abstract String applicationId()
abstract boolean availableToOtherTenants()

Deprecated

use accountType(), false only when account type is "AzureADMyOrg"
abstract Map<String,CertificateCredential> certificateCredentials()
abstract Set<String> identifierUris()
abstract Map<String,PasswordCredential> passwordCredentials()
abstract Set<String> replyUrls()
abstract URL signOnUrl()

Method Details

accountType

public abstract ApplicationAccountType accountType()

Returns:

the application account type

applicationId

public abstract String applicationId()

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()

Returns:

the mapping of certificate credentials from their names

identifierUris

public abstract Set identifierUris()

Returns:

a collection of URIs for the application

passwordCredentials

public abstract Map passwordCredentials()

Returns:

the mapping of password credentials from their names

replyUrls

public abstract Set replyUrls()

Returns:

a collection of reply URLs for the application

signOnUrl

public abstract URL signOnUrl()

Returns:

the home page of the application

Applies to