Interface ActiveDirectoryApplication.DefinitionStages.WithCredential
-
- All Known Subinterfaces:
ActiveDirectoryApplication.Definition,ActiveDirectoryApplication.DefinitionStages.Blank,ActiveDirectoryApplication.DefinitionStages.WithCreate
- Enclosing interface:
- ActiveDirectoryApplication.DefinitionStages
public static interface ActiveDirectoryApplication.DefinitionStages.WithCredentialThe stage of application definition allowing specifying identifier keys.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CertificateCredential.DefinitionStages.Blank<? extends ActiveDirectoryApplication.DefinitionStages.WithCreate>defineCertificateCredential(String name)Starts the definition of a certificate credential.PasswordCredential.DefinitionStages.Blank<? extends ActiveDirectoryApplication.DefinitionStages.WithCreate>definePasswordCredential(String name)Starts the definition of a password credential.
-
-
-
Method Detail
-
defineCertificateCredential
CertificateCredential.DefinitionStages.Blank<? extends ActiveDirectoryApplication.DefinitionStages.WithCreate> defineCertificateCredential(String name)
Starts the definition of a certificate credential.- Parameters:
name- the descriptive name of the certificate credential- Returns:
- the first stage in certificate credential definition
-
definePasswordCredential
PasswordCredential.DefinitionStages.Blank<? extends ActiveDirectoryApplication.DefinitionStages.WithCreate> definePasswordCredential(String name)
Starts the definition of a password credential.- Parameters:
name- the descriptive name of the password credential- Returns:
- the first stage in password credential definition
-
-