Examples of AuthnContextDeclRef


Examples of org.opensaml.saml2.core.AuthnContextDeclRef

*/
public class AuthnContextDeclRefMarshaller extends AbstractSAMLObjectMarshaller {

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject samlObject, Element domElement) throws MarshallingException {
        AuthnContextDeclRef authnContextDeclRef = (AuthnContextDeclRef) samlObject;
        XMLHelper.appendTextContent(domElement, authnContextDeclRef.getAuthnContextDeclRef());
    }
View Full Code Here

Examples of org.opensaml.saml2.core.AuthnContextDeclRef

*/
public class AuthnContextDeclRefUnmarshaller extends AbstractSAMLObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject samlObject, String elementContent) {
        AuthnContextDeclRef authnContextDeclRef = (AuthnContextDeclRef) samlObject;
        authnContextDeclRef.setAuthnContextDeclRef(elementContent);
    }
View Full Code Here

Examples of org.opensaml.saml2.core.AuthnContextDeclRef

        super(namespaceURI, elementLocalName);
    }

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject samlObject, String elementContent) {
        AuthnContextDeclRef authnContextDeclRef = (AuthnContextDeclRef) samlObject;
        authnContextDeclRef.setAuthnContextDeclRef(elementContent);
    }
View Full Code Here

Examples of org.opensaml.saml2.core.AuthnContextDeclRef

        super(namespaceURI, elementLocalName);
    }

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject samlObject, Element domElement) throws MarshallingException {
        AuthnContextDeclRef authnContextDeclRef = (AuthnContextDeclRef) samlObject;
        XMLHelper.appendTextContent(domElement, authnContextDeclRef.getAuthnContextDeclRef());
    }
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.