Package org.opensaml.samlext.saml1md

Examples of org.opensaml.samlext.saml1md.SourceID


*/
public class SourceIDUnmarshaller extends AbstractSAMLObjectUnmarshaller {

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

        sourceID.setValue(elementContent);
    }
View Full Code Here


*/
public class SourceIDMarshaller extends AbstractSAMLObjectMarshaller {

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
        SourceID sourceID = (SourceID) xmlObject;

        if (!DatatypeHelper.isEmpty(sourceID.getValue())) {
            XMLHelper.appendTextContent(domElement, sourceID.getValue());
        }
    }
View Full Code Here

        super(SAMLConstants.SAML1MD_NS, SourceID.DEFAULT_ELEMENT_LOCAL_NAME);
    }

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

        sourceID.setValue(elementContent);
    }
View Full Code Here

        super(SAMLConstants.SAML1MD_NS, SourceID.DEFAULT_ELEMENT_LOCAL_NAME);
    }

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
        SourceID sourceID = (SourceID) xmlObject;

        if (!DatatypeHelper.isEmpty(sourceID.getValue())) {
            XMLHelper.appendTextContent(domElement, sourceID.getValue());
        }
    }
View Full Code Here

TOP

Related Classes of org.opensaml.samlext.saml1md.SourceID

Copyright © 2018 www.massapicom. 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.