PicketLink Federation Core 2.1.6.Final-redhat-2

Uses of Class
org.picketlink.identity.federation.saml.v2.assertion.AssertionType

Packages that use AssertionType
org.picketlink.identity.federation.api.saml.v2.response   
org.picketlink.identity.federation.core.parsers.saml   
org.picketlink.identity.federation.core.saml.v2.common   
org.picketlink.identity.federation.core.saml.v2.factories   
org.picketlink.identity.federation.core.saml.v2.holders   
org.picketlink.identity.federation.core.saml.v2.util   
org.picketlink.identity.federation.core.saml.v2.writers   
org.picketlink.identity.federation.core.wstrust.plugins.saml   
org.picketlink.identity.federation.saml.v2.assertion Package for the model classes for the SAML2 Assertion 
org.picketlink.identity.federation.saml.v2.protocol Package containing the classes for the protocol of SAMLv2 
 

Uses of AssertionType in org.picketlink.identity.federation.api.saml.v2.response
 

Methods in org.picketlink.identity.federation.api.saml.v2.response that return AssertionType
 AssertionType SAML2Response.createAssertion(String id, NameIDType issuer)
          Create an assertion
 AssertionType SAML2Response.getAssertionType(InputStream is)
          Read an assertion from an input stream
 

Methods in org.picketlink.identity.federation.api.saml.v2.response with parameters of type AssertionType
 ResponseType SAML2Response.createResponseType(String ID, IssuerInfoHolder issuerInfo, AssertionType assertion)
          Create a ResponseType
 ResponseType SAML2Response.createResponseType(String ID, SPInfoHolder sp, IDPInfoHolder idp, IssuerInfoHolder issuerInfo, AssertionType assertion)
          Construct a ResponseType without calling PicketLink STS for the assertion.
 void SAML2Response.createTimedConditions(AssertionType assertion, long durationInMilis)
          Add validity conditions to the SAML2 Assertion
 

Uses of AssertionType in org.picketlink.identity.federation.core.parsers.saml
 

Methods in org.picketlink.identity.federation.core.parsers.saml that return AssertionType
 AssertionType SAMLAssertionParser.fromElement(Element element)
           
 

Uses of AssertionType in org.picketlink.identity.federation.core.saml.v2.common
 

Fields in org.picketlink.identity.federation.core.saml.v2.common declared as AssertionType
protected  AssertionType SAMLProtocolContext.issuedAssertion
           
 

Methods in org.picketlink.identity.federation.core.saml.v2.common that return AssertionType
 AssertionType SAMLProtocolContext.getIssuedAssertion()
          Get the previously issued assertion by the STS
 

Methods in org.picketlink.identity.federation.core.saml.v2.common with parameters of type AssertionType
 void SAMLProtocolContext.setIssuedAssertion(AssertionType issuedAssertion)
          Set the assertion issued by the STS
 

Uses of AssertionType in org.picketlink.identity.federation.core.saml.v2.factories
 

Methods in org.picketlink.identity.federation.core.saml.v2.factories that return AssertionType
static AssertionType SAMLAssertionFactory.createAssertion(String id, NameIDType issuerID, XMLGregorianCalendar issueInstant, ConditionsType conditions, SubjectType subject, List<StatementAbstractType> statements)
           Creates a SAMLV2 AssertionType with the specified values.
 

Methods in org.picketlink.identity.federation.core.saml.v2.factories with parameters of type AssertionType
static ResponseType JBossSAMLAuthnResponseFactory.createResponseType(String ID, IssuerInfoHolder issuerInfo, AssertionType assertionType)
          Create a Response Type
 

Uses of AssertionType in org.picketlink.identity.federation.core.saml.v2.holders
 

Methods in org.picketlink.identity.federation.core.saml.v2.holders that return AssertionType
 AssertionType IDPInfoHolder.getAssertion()
           
 

Methods in org.picketlink.identity.federation.core.saml.v2.holders with parameters of type AssertionType
 void IDPInfoHolder.setAssertion(AssertionType assertion)
           
 

Uses of AssertionType in org.picketlink.identity.federation.core.saml.v2.util
 

Methods in org.picketlink.identity.federation.core.saml.v2.util that return AssertionType
static AssertionType AssertionUtil.createAssertion(String id, NameIDType issuer)
          Create an assertion
 

Methods in org.picketlink.identity.federation.core.saml.v2.util with parameters of type AssertionType
static String AssertionUtil.asString(AssertionType assertion)
          Given AssertionType, convert it into a String
static void AssertionUtil.createTimedConditions(AssertionType assertion, long durationInMilis)
           Add validity conditions to the SAML2 Assertion
static void AssertionUtil.createTimedConditions(AssertionType assertion, long durationInMilis, long clockSkew)
          Add validity conditions to the SAML2 Assertion
static XMLGregorianCalendar AssertionUtil.getExpiration(AssertionType assertion)
          Extract the expiration time from an AssertionType
static List<String> AssertionUtil.getRoles(AssertionType assertion, List<String> roleKeys)
          Given an assertion, return the list of roles it may have
static boolean AssertionUtil.hasExpired(AssertionType assertion)
          Check whether the assertion has expired
static boolean AssertionUtil.hasExpired(AssertionType assertion, long clockSkewInMilis)
          Verify whether the assertion has expired.
 

Uses of AssertionType in org.picketlink.identity.federation.core.saml.v2.writers
 

Methods in org.picketlink.identity.federation.core.saml.v2.writers with parameters of type AssertionType
 void SAMLAssertionWriter.write(AssertionType assertion)
          Write an AssertionType to stream
 

Uses of AssertionType in org.picketlink.identity.federation.core.wstrust.plugins.saml
 

Methods in org.picketlink.identity.federation.core.wstrust.plugins.saml that return AssertionType
static AssertionType SAMLUtil.fromElement(Element assertionElement)
           Utility method that unmarshals the specified Element into an AssertionType instance.
 

Methods in org.picketlink.identity.federation.core.wstrust.plugins.saml with parameters of type AssertionType
static Element SAMLUtil.toElement(AssertionType assertion)
           Utility method that marshals the specified AssertionType object into an Element instance.
 

Uses of AssertionType in org.picketlink.identity.federation.saml.v2.assertion
 

Methods in org.picketlink.identity.federation.saml.v2.assertion that return AssertionType
 AssertionType EvidenceType.ChoiceType.getAssertion()
           
 

Constructors in org.picketlink.identity.federation.saml.v2.assertion with parameters of type AssertionType
EvidenceType.ChoiceType(AssertionType assertion)
           
 

Uses of AssertionType in org.picketlink.identity.federation.saml.v2.protocol
 

Methods in org.picketlink.identity.federation.saml.v2.protocol that return AssertionType
 AssertionType ResponseType.RTChoiceType.getAssertion()
           
 

Constructors in org.picketlink.identity.federation.saml.v2.protocol with parameters of type AssertionType
ResponseType.RTChoiceType(AssertionType assertion)
           
 


PicketLink Federation Core 2.1.6.Final-redhat-2

Copyright © 2013 JBoss by Red Hat. All Rights Reserved.