Interface ActiveDirectoryApplication.UpdateStages.WithCredential
-
- All Known Subinterfaces:
ActiveDirectoryApplication.Update
- Enclosing interface:
- ActiveDirectoryApplication.UpdateStages
public static interface ActiveDirectoryApplication.UpdateStages.WithCredentialThe stage of application update allowing specifying identifier keys.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CertificateCredential.DefinitionStages.Blank<? extends ActiveDirectoryApplication.Update>defineCertificateCredential(String name)Starts the definition of a certificate credential.PasswordCredential.DefinitionStages.Blank<? extends ActiveDirectoryApplication.Update>definePasswordCredential(String name)Starts the definition of a password credential.ActiveDirectoryApplication.UpdatewithoutCredential(String name)Removes a key.
-
-
-
Method Detail
-
defineCertificateCredential
CertificateCredential.DefinitionStages.Blank<? extends ActiveDirectoryApplication.Update> 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.Update> 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
-
withoutCredential
ActiveDirectoryApplication.Update withoutCredential(String name)
Removes a key.- Parameters:
name- the name of the key- Returns:
- the next stage of the application update
-
-