Class IssuerCredentials
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.IssuerCredentials
-
public class IssuerCredentials extends Object
The credentials to be used for the certificate issuer.
-
-
Constructor Summary
Constructors Constructor Description IssuerCredentials()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringaccountId()Get the accountId value.Stringpassword()Get the password value.IssuerCredentialswithAccountId(String accountId)Set the accountId value.IssuerCredentialswithPassword(String password)Set the password value.
-
-
-
Method Detail
-
accountId
public String accountId()
Get the accountId value.- Returns:
- the accountId value
-
withAccountId
public IssuerCredentials withAccountId(String accountId)
Set the accountId value.- Parameters:
accountId- the accountId value to set- Returns:
- the IssuerCredentials object itself.
-
password
public String password()
Get the password value.- Returns:
- the password value
-
withPassword
public IssuerCredentials withPassword(String password)
Set the password value.- Parameters:
password- the password value to set- Returns:
- the IssuerCredentials object itself.
-
-