Class IssuerProperties
- java.lang.Object
-
- com.azure.security.keyvault.certificates.models.IssuerProperties
-
public class IssuerProperties extends Object
Represents base properties of anCertificateIssuer.
-
-
Constructor Summary
Constructors Constructor Description IssuerProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()Get the id of the issuer.StringgetName()Get the issuer nameStringgetProvider()Get the issuer providerIssuerPropertiessetProvider(String provider)Set the issuer provider
-
-
-
Method Detail
-
getId
public String getId()
Get the id of the issuer.- Returns:
- the identifier.
-
getProvider
public String getProvider()
Get the issuer provider- Returns:
- the issuer provider
-
getName
public String getName()
Get the issuer name- Returns:
- the issuer name
-
setProvider
public IssuerProperties setProvider(String provider)
Set the issuer provider- Parameters:
provider- The issuer provider.- Returns:
- the updated IssuerProperties object
-
-