Examples of AssertionArtifact


Examples of org.opensaml.saml1.core.AssertionArtifact

*/
public class AssertionArtifactUnmarshaller extends AbstractSAMLObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject samlObject, String elementContent) {
        AssertionArtifact assertionArtifact = (AssertionArtifact) samlObject;

        assertionArtifact.setAssertionArtifact(elementContent);
    }
View Full Code Here

Examples of org.opensaml.saml1.core.AssertionArtifact

*/
public class AssertionArtifactMarshaller extends AbstractSAMLObjectMarshaller {

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject samlObject, Element domElement) throws MarshallingException {
        AssertionArtifact assertionArtifact = (AssertionArtifact) samlObject;
        if (assertionArtifact.getAssertionArtifact() != null) {
            XMLHelper.appendTextContent(domElement, assertionArtifact.getAssertionArtifact());
        }
    }
View Full Code Here

Examples of org.opensaml.saml1.core.AssertionArtifact

        if (artifacts.size() == 0) {
            return;
        }

        log.debug("Attempting to extract issuer based on first AssertionArtifact in request");
        AssertionArtifact artifact = artifacts.get(0);
        SAMLArtifactMapEntry artifactEntry = artifactMap.get(artifact.getAssertionArtifact());
        messageContext.setInboundMessageIssuer(artifactEntry.getRelyingPartyId());

        log.debug("Extracted issuer from SAML 1.x AssertionArtifact: {}", messageContext.getInboundMessageIssuer());
    }
View Full Code Here

Examples of org.opensaml.saml1.core.AssertionArtifact

        super(SAMLConstants.SAML10P_NS, AssertionArtifact.DEFAULT_ELEMENT_LOCAL_NAME);
    }

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject samlObject, Element domElement) throws MarshallingException {
        AssertionArtifact assertionArtifact = (AssertionArtifact) samlObject;
        if (assertionArtifact.getAssertionArtifact() != null) {
            XMLHelper.appendTextContent(domElement,assertionArtifact.getAssertionArtifact());
        }
    }
View Full Code Here

Examples of org.opensaml.saml1.core.AssertionArtifact

        if (artifacts.size() == 0) {
            return;
        }

        log.debug("Attempting to extract issuer based on first AssertionArtifact in request");
        AssertionArtifact artifact = artifacts.get(0);
        SAMLArtifactMapEntry artifactEntry = artifactMap.get(artifact.getAssertionArtifact());
        messageContext.setInboundMessageIssuer(artifactEntry.getRelyingPartyId());

        log.debug("Extracted issuer from SAML 1.x AssertionArtifact: {}", messageContext.getInboundMessageIssuer());
    }
View Full Code Here

Examples of org.opensaml.saml1.core.AssertionArtifact

        super(SAMLConstants.SAML10P_NS, AssertionArtifact.DEFAULT_ELEMENT_LOCAL_NAME);
    }

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject samlObject, String elementContent) {
        AssertionArtifact assertionArtifact = (AssertionArtifact) samlObject;

        assertionArtifact.setAssertionArtifact(elementContent);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.