public class GetSAMLProviderResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Contains the response to a successful GetSAMLProvider request.
Modifier and Type | Field and Description |
---|---|
private java.util.Date |
createDate
The date and time when the SAML provider was created.
|
private java.lang.String |
sAMLMetadataDocument
The XML metadata document that includes information about an identity
provider.
|
private java.util.Date |
validUntil
The expiration date and time for the SAML provider.
|
Constructor and Description |
---|
GetSAMLProviderResult() |
Modifier and Type | Method and Description |
---|---|
GetSAMLProviderResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.Date |
getCreateDate()
The date and time when the SAML provider was created.
|
java.lang.String |
getSAMLMetadataDocument()
The XML metadata document that includes information about an identity
provider.
|
java.util.Date |
getValidUntil()
The expiration date and time for the SAML provider.
|
int |
hashCode() |
void |
setCreateDate(java.util.Date createDate)
The date and time when the SAML provider was created.
|
void |
setSAMLMetadataDocument(java.lang.String sAMLMetadataDocument)
The XML metadata document that includes information about an identity
provider.
|
void |
setValidUntil(java.util.Date validUntil)
The expiration date and time for the SAML provider.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
GetSAMLProviderResult |
withCreateDate(java.util.Date createDate)
The date and time when the SAML provider was created.
|
GetSAMLProviderResult |
withSAMLMetadataDocument(java.lang.String sAMLMetadataDocument)
The XML metadata document that includes information about an identity
provider.
|
GetSAMLProviderResult |
withValidUntil(java.util.Date validUntil)
The expiration date and time for the SAML provider.
|
private java.lang.String sAMLMetadataDocument
The XML metadata document that includes information about an identity provider.
private java.util.Date createDate
The date and time when the SAML provider was created.
private java.util.Date validUntil
The expiration date and time for the SAML provider.
public void setSAMLMetadataDocument(java.lang.String sAMLMetadataDocument)
The XML metadata document that includes information about an identity provider.
sAMLMetadataDocument
- The XML metadata document that includes information about an
identity provider.public java.lang.String getSAMLMetadataDocument()
The XML metadata document that includes information about an identity provider.
public GetSAMLProviderResult withSAMLMetadataDocument(java.lang.String sAMLMetadataDocument)
The XML metadata document that includes information about an identity provider.
sAMLMetadataDocument
- The XML metadata document that includes information about an
identity provider.public void setCreateDate(java.util.Date createDate)
The date and time when the SAML provider was created.
createDate
- The date and time when the SAML provider was created.public java.util.Date getCreateDate()
The date and time when the SAML provider was created.
public GetSAMLProviderResult withCreateDate(java.util.Date createDate)
The date and time when the SAML provider was created.
createDate
- The date and time when the SAML provider was created.public void setValidUntil(java.util.Date validUntil)
The expiration date and time for the SAML provider.
validUntil
- The expiration date and time for the SAML provider.public java.util.Date getValidUntil()
The expiration date and time for the SAML provider.
public GetSAMLProviderResult withValidUntil(java.util.Date validUntil)
The expiration date and time for the SAML provider.
validUntil
- The expiration date and time for the SAML provider.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public GetSAMLProviderResult clone()
clone
in class java.lang.Object