Package org.opensaml.ws.wsaddressing

Examples of org.opensaml.ws.wsaddressing.AttributedQName


*/
public class AttributedQNameMarshaller extends XSQNameMarshaller {

    /** {@inheritDoc} */
    protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
        AttributedQName attributedQName = (AttributedQName) xmlObject;
        XMLHelper.marshallAttributeMap(attributedQName.getUnknownAttributes(), domElement);
    }
View Full Code Here


*/
public class AttributedQNameUnmarshaller extends XSQNameUnmarshaller {

    /** {@inheritDoc} */
    protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
        AttributedQName attributedQName = (AttributedQName) xmlObject;
        XMLHelper.unmarshallToAttributeMap(attributedQName.getUnknownAttributes(), attribute);
    }
View Full Code Here

*/
public class AttributedQNameMarshaller extends XSQNameMarshaller {

    /** {@inheritDoc} */
    protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
        AttributedQName attributedQName = (AttributedQName) xmlObject;
        XMLHelper.marshallAttributeMap(attributedQName.getUnknownAttributes(), domElement);
    }
View Full Code Here

*/
public class AttributedQNameUnmarshaller extends XSQNameUnmarshaller {

    /** {@inheritDoc} */
    protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
        AttributedQName attributedQName = (AttributedQName) xmlObject;
        XMLHelper.unmarshallToAttributeMap(attributedQName.getUnknownAttributes(), attribute);
    }
View Full Code Here

TOP

Related Classes of org.opensaml.ws.wsaddressing.AttributedQName

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.