Class IssuerParameters
- java.lang.Object
-
- com.microsoft.azure.keyvault.models.IssuerParameters
-
public class IssuerParameters extends Object
Parameters for the issuer of the X509 component of a certificate.
-
-
Constructor Summary
Constructors Constructor Description IssuerParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Boolean
certificateTransparency()
Get the certificateTransparency value.String
certificateType()
Get the certificateType value.String
name()
Get the name value.IssuerParameters
withCertificateTransparency(Boolean certificateTransparency)
Set the certificateTransparency value.IssuerParameters
withCertificateType(String certificateType)
Set the certificateType value.IssuerParameters
withName(String name)
Set the name value.
-
-
-
Method Detail
-
name
public String name()
Get the name value.- Returns:
- the name value
-
withName
public IssuerParameters withName(String name)
Set the name value.- Parameters:
name
- the name value to set- Returns:
- the IssuerParameters object itself.
-
certificateType
public String certificateType()
Get the certificateType value.- Returns:
- the certificateType value
-
withCertificateType
public IssuerParameters withCertificateType(String certificateType)
Set the certificateType value.- Parameters:
certificateType
- the certificateType value to set- Returns:
- the IssuerParameters object itself.
-
certificateTransparency
public Boolean certificateTransparency()
Get the certificateTransparency value.- Returns:
- the certificateTransparency value
-
withCertificateTransparency
public IssuerParameters withCertificateTransparency(Boolean certificateTransparency)
Set the certificateTransparency value.- Parameters:
certificateTransparency
- the certificateTransparency value to set- Returns:
- the IssuerParameters object itself.
-
-