public abstract class AssertionBase extends Object
Assertion
element.An Assertion is a
package of information that supplies one or more Statement
made
by an issuer. There are three kinds of assertionsL Authentication,
AuthorizationDecision and Attribute assertion.
This class is an abstract base class for all Assertion implementations and
encapsulates common functionality.Modifier | Constructor and Description |
---|---|
protected |
AssertionBase()
Default constructor, declaring protected to enable extensibility
|
|
AssertionBase(Element assertionElement)
Contructor
This constructor is used to build
Assertion object from a
block of existing XML that has already been built into a DOM. |
|
AssertionBase(String assertionID,
String issuer,
Date issueInstant,
Conditions conditions,
AdviceBase advice,
Set statements)
This constructor is used to populate the data members: the
ssertionID , the issuer, time when assertion issued,
the conditions when creating a new assertion , Advice
applicable to this Assertion and a set of
Statement (s) in the assertion. |
|
AssertionBase(String assertionID,
String issuer,
Date issueInstant,
Conditions conditions,
Set statements)
This constructor is used to populate the data members: the
assertionID , the issuer, time when assertion issued, the
conditions when creating a new assertion and a set of
Statement (s) in the assertion. |
|
AssertionBase(String assertionID,
String issuer,
Date issueInstant,
Set statements)
Contructor
This constructor is used to populate the data members:
assertionID , the issuer, time when assertion issued and a
set of Statement (s) in the assertion. |
Modifier and Type | Method and Description |
---|---|
boolean |
addStatement(Statement statement)
Adds a statement to this
Assertion |
protected abstract AdviceBase |
createAdvice(Element adviceElement)
Creates appropriate Advice instance
|
protected abstract AssertionIDReference |
createAssertionIDReference(Element assertionIDRefElement)
Creates appropriate AssertionIDReference instance
|
protected abstract AssertionIDReference |
createAssertionIDReference(String assertionID)
Creates appropriate AssertionIDReference instance
|
protected abstract AttributeStatement |
createAttributeStatement(Element attributeElement)
Creates appropriate AttributeStatement instance
|
protected abstract AuthenticationStatement |
createAuthenticationStatement(Element authenticationElement)
Creates appropriate AuthenticationStatement instance
|
protected abstract AuthorizationDecisionStatementBase |
createAuthorizationDecisionStatement(Element authDecisionElement)
Create appropriate AuthorizationDecisionStatement instance
|
protected abstract Conditions |
createConditions(Element conditionsElement)
Creates appropriate Conditions instance
|
String |
getAssertionID()
Returns the assertion ID.
|
Conditions |
getConditions()
Returns the conditions of an assertion.
|
Date |
getIssueInstant()
Returns the time when the assertion was issued.
|
String |
getIssuer()
Returns the issuer of an assertion.
|
int |
getMajorVersion()
Returns the major version number of an assertion.
|
int |
getMinorVersion()
Returns the minor version number of an assertion.
|
Element |
getSignature()
Gets the Signature element of the Assertion.
|
Set |
getStatement()
Returns a set of
Statement contained within this assertion. |
boolean |
isSignatureValid()
Returns whether the signature on the object is valid or not.
|
boolean |
isSigned()
Returns whether the object is signed or not.
|
boolean |
isTimeValid()
Gets the validity of the assertion evaluating its conditions if
specified.
|
boolean |
setAdvice(AdviceBase advice)
Sets the advice for an assertion
|
protected boolean |
setAssertionID(String assertionID)
Set the
AssertionID for this assertion |
boolean |
setConditions(Conditions conditions)
Sets the Conditions information for an assertion
|
protected boolean |
setIssueInstant(Date issueInstant)
Set the time when the assertion was issued
|
protected boolean |
setIssuer(String issuer)
Sets the issuer for an assertion
|
void |
setMajorVersion(int majorVersion)
Sets the major version number of an assertion.
|
void |
setMinorVersion(int minorVersion)
Sets the minor version number of an assertion.
|
boolean |
setSignature(Element elem)
Sets the signature for the Request
|
void |
signXML()
Signs the Assertion.
|
void |
signXML(String certAlias)
Signs the Assertion.
|
String |
toString()
Returns a String representation of the element.
|
String |
toString(boolean includeNS,
boolean declareNS)
Returns a String representation of the
<Assertion>
element. |
protected AssertionBase()
public AssertionBase(Element assertionElement) throws SAMLException
Assertion
object from a
block of existing XML that has already been built into a DOM.assertionElement
- A org.w3c.dom.Element
representing
DOM tree for Assertion
objectSAMLException
- if it could not process the Element properly,
implying that there is an error in the sender or in the
element definition.public AssertionBase(String assertionID, String issuer, Date issueInstant, Set statements) throws SAMLException
assertionID
, the issuer, time when assertion issued and a
set of Statement
(s) in the assertion.assertionID
- assertionID
attribute contained within
this Assertion
if null, an assertionID
is generated internally.issuer
- The issuer of this assertion.issueInstant
- time instant of the issue. It has type
dateTime
which is built in to the W3C XML Schema
Types specification.if null, current time is used.statements
- set of Statement
objects within this
Assertion
. It could be of type
AuthenticationStatement
,
AuthorizationDecisionStatement
and
AttributeStatement
. Each Assertion can have multiple
type of statements in it.SAMLException
- if there is an error in processing input.public AssertionBase(String assertionID, String issuer, Date issueInstant, Conditions conditions, Set statements) throws SAMLException
assertionID
, the issuer, time when assertion issued, the
conditions when creating a new assertion and a set of
Statement
(s) in the assertion.assertionID
- AssertionID
contained within this
Assertion
if null its generated internally.issuer
- The issuer of this assertion.issueInstant
- time instant of the issue. It has type
dateTime
which is built in to the W3C XML Schema
Types specification. if null, current time is used.conditions
- Conditions
under which the this
Assertion
is valid.statements
- Set of Statement
objects within this
Assertion
. It could be of type
AuthenticationStatement
,
AuthorizationDecisionStatement
and
AttributeStatement
. Each Assertion can have multiple
type of statements in it.SAMLException
- if there is an error in processing input.public AssertionBase(String assertionID, String issuer, Date issueInstant, Conditions conditions, AdviceBase advice, Set statements) throws SAMLException
ssertionID
, the issuer, time when assertion issued,
the conditions when creating a new assertion , Advice
applicable to this Assertion
and a set of
Statement
(s) in the assertion.assertionID
- AssertionID
object contained within this
Assertion
if null its generated internally.issuer
- The issuer of this assertion.issueInstant
- Time instant of the issue. It has type
dateTime
which is built in to the W3C XML Schema
Types specification. if null, current time is used.conditions
- Conditions
under which the this
Assertion
is valid.advice
- Advice
applicable for this
Assertion
.statements
- Set of Statement
objects within this
Assertion
. It could be of type
AuthenticationStatement
,
AuthorizationDecisionStatement
and
AttributeStatement
. Each Assertion can have
multiple type of statements in it.SAMLException
- if there is an error in processing input.public boolean isSigned()
public boolean isSignatureValid()
public void signXML() throws SAMLException
SAMLException
- If it could not sign the Assertion.public void signXML(String certAlias) throws SAMLException
certAlias
- certification Alias used to sign Assertion.SAMLException
- if it could not sign the Assertion.public Element getSignature()
public boolean setSignature(Element elem)
elem
- ds:Signature elementprotected abstract AdviceBase createAdvice(Element adviceElement) throws SAMLException
adviceElement
- the Advice ElementSAMLException
protected abstract AuthorizationDecisionStatementBase createAuthorizationDecisionStatement(Element authDecisionElement) throws SAMLException
authDecisionElement
- the AuthorizationDecisionStatement ElementSAMLException
protected abstract AuthenticationStatement createAuthenticationStatement(Element authenticationElement) throws SAMLException
authenticationElement
- the AuthenticationStatement ElementSAMLException
protected abstract AttributeStatement createAttributeStatement(Element attributeElement) throws SAMLException
attributeElement
- the AttributeStatement ElementSAMLException
protected abstract AssertionIDReference createAssertionIDReference(Element assertionIDRefElement) throws SAMLException
assertionIDRefElement
- the AssertionIDReference ElementSAMLException
protected abstract AssertionIDReference createAssertionIDReference(String assertionID) throws SAMLException
assertionID
- the AssertionID StringSAMLException
protected abstract Conditions createConditions(Element conditionsElement) throws SAMLException
conditionsElement
- the Conditions ElementSAMLException
public boolean isTimeValid()
NotBefore
(current time inclusive) and
NotOnOrAfter
(current time exclusive) values
and true otherwise or if no conditions specified.public boolean addStatement(Statement statement)
Assertion
statement
- Statement
to be addedprotected boolean setIssueInstant(Date issueInstant)
issueInstant
- : java.util.Date
representing the time
of the assertionprotected boolean setAssertionID(String assertionID)
AssertionID
for this assertionassertionID
- : a String representing id of this
assertion.protected boolean setIssuer(String issuer)
issuer
- : a string representing the issuer of the assertionpublic boolean setAdvice(AdviceBase advice)
advice
- : a linked list representing the advice informationpublic boolean setConditions(Conditions conditions)
conditions
- a linked list representing the conditions informationpublic int getMinorVersion()
public void setMinorVersion(int minorVersion)
minorVersion
- minor version.public int getMajorVersion()
public void setMajorVersion(int majorVersion)
majorVersion
- major version.public Date getIssueInstant()
java.util.Date
format.public String getIssuer()
public String getAssertionID()
public Conditions getConditions()
Conditions
object containing conditions for an
assertion being valid.public Set getStatement()
Statement
contained within this assertion.Statement
contained within this assertion.public String toString()
public String toString(boolean includeNS, boolean declareNS)
<Assertion>
element.includeNS
- if true prepends all elements by their Namespace
name example <saml:Assertion>
declareNS
- if true includes the namespace within the generated
XML.Copyright © 2010-2018, ForgeRock All Rights Reserved.