Class ChangeSamlCertificateRequest
- Object
-
- ChangeSamlCertificateRequest
-
- All Implemented Interfaces:
Serializable
public class ChangeSamlCertificateRequest extends Object implements Serializable
This class represents the requests to update saml certificates.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ChangeSamlCertificateRequest.Builder
-
Constructor Summary
Constructors Constructor Description ChangeSamlCertificateRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ChangeSamlCertificateRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
InputStream
getCertificate()
The stream of the certificate in PEM format.SamlCertificateType
getType()
The type of certificate to be changed.int
hashCode()
void
setCertificate(InputStream certificate)
The stream of the certificate in PEM format.void
setType(SamlCertificateType type)
The type of certificate to be changed.String
toString()
-
-
-
Method Detail
-
builder
public static ChangeSamlCertificateRequest.Builder builder()
-
getCertificate
public InputStream getCertificate()
The stream of the certificate in PEM format.
-
getType
public SamlCertificateType getType()
The type of certificate to be changed.
-
setCertificate
public void setCertificate(InputStream certificate)
The stream of the certificate in PEM format.
-
setType
public void setType(SamlCertificateType type)
The type of certificate to be changed.
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classObject
-
canEqual
protected boolean canEqual(Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classObject
-
toString
public String toString()
- Overrides:
toString
in classObject
-
-