Class SubjectConfirmationDataBean
- java.lang.Object
-
- org.apache.wss4j.common.saml.bean.SubjectConfirmationDataBean
-
public class SubjectConfirmationDataBean extends Object
Class SubjectConfirmationDataBean represents a SAML (2) SubjectConfirmationData. Please note that KeyInfo functionality is in SubjectBean for backwards compatibility reasons.
-
-
Constructor Summary
Constructors Constructor Description SubjectConfirmationDataBean()Constructor SubjectConfirmationDataBean creates a new SubjectConfirmationDataBean instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddAny(Object obj)Adds an additional elementbooleanequals(Object o)Method equals ...StringgetAddress()Get the address of the SubjectConfirmationDataBeanList<Object>getAny()Get the list of additional elementsStringgetInResponseTo()Get the InResponseTo element of the SubjectConfirmationDataBeanInstantgetNotAfter()Get the NotOnOrAfter time of the SubjectConfirmationDataBeanInstantgetNotBefore()Get the NotBefore time of the SubjectConfirmationDataBeanStringgetRecipient()Get the recipient of the SubjectConfirmationDataBeaninthashCode()voidsetAddress(String address)Set the address of the SubjectConfirmationDataBeanvoidsetAny(List<Object> any)Set the list of additional elementsvoidsetInResponseTo(String inResponseTo)Set the InResponseTo element of the SubjectConfirmationDataBeanvoidsetNotAfter(Instant notAfter)Set the notAfter instancevoidsetNotBefore(Instant notBefore)Set the notBefore instancevoidsetRecipient(String recipient)Set the recipient of the SubjectConfirmationDataBean
-
-
-
Method Detail
-
getRecipient
public String getRecipient()
Get the recipient of the SubjectConfirmationDataBean- Returns:
- the recipient of the SubjectConfirmationDataBean
-
setRecipient
public void setRecipient(String recipient)
Set the recipient of the SubjectConfirmationDataBean- Parameters:
recipient- the recipient of the SubjectConfirmationDataBean
-
getAddress
public String getAddress()
Get the address of the SubjectConfirmationDataBean- Returns:
- the address of the SubjectConfirmationDataBean
-
setAddress
public void setAddress(String address)
Set the address of the SubjectConfirmationDataBean- Parameters:
address- the address of the SubjectConfirmationDataBean
-
getInResponseTo
public String getInResponseTo()
Get the InResponseTo element of the SubjectConfirmationDataBean- Returns:
- the InResponseTo element of the SubjectConfirmationDataBean
-
setInResponseTo
public void setInResponseTo(String inResponseTo)
Set the InResponseTo element of the SubjectConfirmationDataBean- Parameters:
inResponseTo- the InResponseTo element of the SubjectConfirmationDataBean
-
getNotBefore
public Instant getNotBefore()
Get the NotBefore time of the SubjectConfirmationDataBean- Returns:
- the NotBefore time of the SubjectConfirmationDataBean
-
setNotBefore
public void setNotBefore(Instant notBefore)
Set the notBefore instance- Parameters:
notBefore- the notBefore instance to set
-
getNotAfter
public Instant getNotAfter()
Get the NotOnOrAfter time of the SubjectConfirmationDataBean- Returns:
- the NotOnOrAfter time of the SubjectConfirmationDataBean
-
setNotAfter
public void setNotAfter(Instant notAfter)
Set the notAfter instance- Parameters:
notAfter- the notAfter instance to set
-
getAny
public List<Object> getAny()
Get the list of additional elements- Returns:
- list of additional elements
-
setAny
public void setAny(List<Object> any)
Set the list of additional elements- Parameters:
any- the list of additional elements
-
addAny
public void addAny(Object obj)
Adds an additional element- Parameters:
obj- additional element
-
equals
public boolean equals(Object o)
Method equals ...
-
-