Uses of Class
com.sun.identity.saml.assertion.Statement

Packages that use Statement
Package
Description
Defines SAML assertion.
  • Uses of Statement in com.sun.identity.saml.assertion

    Modifier and Type
    Class
    Description
    class 
    The AttributeStatement element supplies a statement by the issuer that the specified subject is associated with the specified attributes.
    class 
    The AuthenticationStatement element supplies a statement by the issuer that its subject was authenticated by a particular means at a particular time.
    class 
    The AuthorizationDecisionStatement 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 
    The AuthorizationDecisionStatement 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 
    The SubjectStatement 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 sequence
    Methods in com.sun.identity.saml.assertion that return types with arguments of type Statement
    Modifier and Type
    Method
    Description
    AssertionBase.getStatement()
    Returns a set of Statement 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 this Assertion
    Constructor parameters in com.sun.identity.saml.assertion with type arguments of type Statement
    Modifier
    Constructor
    Description
     
    Assertion(String assertionID, String issuer, Date issueInstant, Conditions conditions, Advice advice, Set<Statement> statements)
    Constructs Assertion object and populate the data members: the AssertionID, 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.
     
    Assertion(String assertionID, String issuer, Date issueInstant, Conditions conditions, Set<Statement> statements)
    Constructs Assertion object and 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.
     
    Assertion(String assertionID, String issuer, Date issueInstant, Set<Statement> statements)
    Constructs Assertion object and populate the data members: assertionID, the issuer, time when assertion issued and a set of Statement(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: 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<Statement> 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<Statement> 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.