Uses of Class
com.sun.identity.saml.assertion.Statement
-
Packages that use Statement Package Description com.sun.identity.saml.assertion Defines SAML assertion. -
-
Uses of Statement in com.sun.identity.saml.assertion
Subclasses of Statement in com.sun.identity.saml.assertion Modifier and Type Class Description class
AttributeStatement
TheAttributeStatement
element supplies a statement by the issuer that the specified subject is associated with the specified attributes.class
AuthenticationStatement
TheAuthenticationStatement
element supplies a statement by the issuer that its subject was authenticated by a particular means at a particular time.class
AuthorizationDecisionStatement
TheAuthorizationDecisionStatement
element supplies a statement by the issuer that the request for access by the specified subject to the specified resource has resulted in the specified decision on the basis of some optionally specified evidence.class
AuthorizationDecisionStatementBase
TheAuthorizationDecisionStatement
element supplies a statement by the issuer that the request for access by the specified subject to the specified resource has resulted in the specified decision on the basis of some optionally specified evidence.class
SubjectStatement
TheSubjectStatement
element is an extension point that allows other assertion-based applications to reuse the SAML assertion framework.Fields in com.sun.identity.saml.assertion with type parameters of type Statement Modifier and Type Field Description protected Set<Statement>
AssertionBase. _statements
The statements variable is a HashSet of all the stataments in this assertion in the defined sequenceMethods in com.sun.identity.saml.assertion that return types with arguments of type Statement Modifier and Type Method Description Set<Statement>
AssertionBase. getStatement()
Returns a set ofStatement
contained within this assertion.Methods in com.sun.identity.saml.assertion with parameters of type Statement Modifier and Type Method Description boolean
AssertionBase. addStatement(Statement statement)
Adds a statement to thisAssertion
Constructor parameters in com.sun.identity.saml.assertion with type arguments of type Statement Constructor Description Assertion(String assertionID, String issuer, Date issueInstant, Conditions conditions, Advice advice, Set<Statement> statements)
ConstructsAssertion
object and populate the data members: theAssertionID
, the issuer, time when assertion issued, the conditions when creating a new assertion ,Advice
applicable to thisAssertion
and a set ofStatement
(s) in the assertion.Assertion(String assertionID, String issuer, Date issueInstant, Conditions conditions, Set<Statement> statements)
ConstructsAssertion
object and populate the data members: theassertionID
, the issuer, time when assertion issued, the conditions when creating a new assertion and a set ofStatement
(s) in the assertion.Assertion(String assertionID, String issuer, Date issueInstant, Set<Statement> statements)
ConstructsAssertion
object and populate the data members:assertionID
, the issuer, time when assertion issued and a set ofStatement
(s) in the assertion.AssertionBase(String assertionID, String issuer, Date issueInstant, Conditions conditions, AdviceBase advice, Set<Statement> statements)
This constructor is used to populate the data members: thessertionID
, the issuer, time when assertion issued, the conditions when creating a new assertion ,Advice
applicable to thisAssertion
and a set ofStatement
(s) in the assertion.AssertionBase(String assertionID, String issuer, Date issueInstant, Conditions conditions, Set<Statement> statements)
This constructor is used to populate the data members: theassertionID
, the issuer, time when assertion issued, the conditions when creating a new assertion and a set ofStatement
(s) in the assertion.AssertionBase(String assertionID, String issuer, Date issueInstant, Set<Statement> statements)
Contructor This constructor is used to populate the data members:assertionID
, the issuer, time when assertion issued and a set ofStatement
(s) in the assertion.
-