Package org.keycloak.dom.saml.common
Class CommonRequestAbstractType
- java.lang.Object
-
- org.keycloak.dom.saml.common.CommonRequestAbstractType
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
RequestAbstractType,SAML11RequestAbstractType
public abstract class CommonRequestAbstractType extends Object implements Serializable
SAML Request Abstract Type- Since:
- Jun 22, 2011
- Author:
- Anil.Saldhana@redhat.com
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringidprotected XMLGregorianCalendarissueInstantprotected Elementsignature
-
Constructor Summary
Constructors Constructor Description CommonRequestAbstractType(String id, XMLGregorianCalendar issueInstant)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetID()Gets the value of the id property.XMLGregorianCalendargetIssueInstant()Gets the value of the issueInstant property.ElementgetSignature()Gets the value of the signature property.voidsetSignature(Element value)Sets the value of the signature property.
-
-
-
Field Detail
-
id
protected String id
-
issueInstant
protected XMLGregorianCalendar issueInstant
-
signature
protected Element signature
-
-
Constructor Detail
-
CommonRequestAbstractType
public CommonRequestAbstractType(String id, XMLGregorianCalendar issueInstant)
-
-
Method Detail
-
getIssueInstant
public XMLGregorianCalendar getIssueInstant()
Gets the value of the issueInstant property.- Returns:
- possible object is
XMLGregorianCalendar
-
getSignature
public Element getSignature()
Gets the value of the signature property.- Returns:
- possible object is
SignatureType
-
setSignature
public void setSignature(Element value)
Sets the value of the signature property.- Parameters:
value- allowed object isSignatureType
-
-