Interface ActiveDirectoryApplication
-
- All Superinterfaces:
ActiveDirectoryObject,HasId,HasInnerModel<MicrosoftGraphApplicationInner>,HasManager<AuthorizationManager>,HasName,Indexable,Updatable<ActiveDirectoryApplication.Update>
public interface ActiveDirectoryApplication extends ActiveDirectoryObject, HasInnerModel<MicrosoftGraphApplicationInner>, Updatable<ActiveDirectoryApplication.Update>
An immutable client-side representation of an Azure AD application.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceActiveDirectoryApplication.DefinitionContainer interface for all the definitions that need to be implemented.static interfaceActiveDirectoryApplication.DefinitionStagesGrouping of all the application definition stages.static interfaceActiveDirectoryApplication.UpdateThe template for an application update operation, containing all the settings that can be modified.static interfaceActiveDirectoryApplication.UpdateStagesGrouping of all the application update stages.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description ApplicationAccountTypeaccountType()StringapplicationId()booleanavailableToOtherTenants()Deprecated.useaccountType(), false only when account type is "AzureADMyOrg"Map<String,CertificateCredential>certificateCredentials()Set<String>identifierUris()Map<String,PasswordCredential>passwordCredentials()Set<String>replyUrls()URLsignOnUrl()-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel
innerModel
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.HasManager
manager
-
-
-
-
Method Detail
-
applicationId
String applicationId()
- Returns:
- the application ID
-
availableToOtherTenants
@Deprecated boolean availableToOtherTenants()
Deprecated.useaccountType(), false only when account type is "AzureADMyOrg"- Returns:
- whether the application is be available to other tenants
-
accountType
ApplicationAccountType accountType()
- Returns:
- the application account type
-
signOnUrl
URL signOnUrl()
- Returns:
- the home page of the application
-
passwordCredentials
Map<String,PasswordCredential> passwordCredentials()
- Returns:
- the mapping of password credentials from their names
-
certificateCredentials
Map<String,CertificateCredential> certificateCredentials()
- Returns:
- the mapping of certificate credentials from their names
-
-