Package org.objectweb.celtix.ws.addressing.wsdl

Examples of org.objectweb.celtix.ws.addressing.wsdl.AttributedQNameType


        assertTrue(obj instanceof JAXBElement);
        obj = ((JAXBElement)obj).getValue();
        assertNotNull(obj);
        assertTrue(obj instanceof AttributedQNameType);
       
        AttributedQNameType aqt = (AttributedQNameType) obj;
        assertEquals(portTypeName1, aqt.getValue());
    }
View Full Code Here


        return null;
    }
   
    public static void setInterfaceName(EndpointReferenceType ref, QName portTypeName) {
        if (null != portTypeName) {
            AttributedQNameType interfaceNameType = new AttributedQNameType();
           
            interfaceNameType.setValue(portTypeName);
           
            org.objectweb.celtix.ws.addressing.wsdl.ObjectFactory objectFactory =
                new org.objectweb.celtix.ws.addressing.wsdl.ObjectFactory();
            JAXBElement<AttributedQNameType> jaxbElement =
                objectFactory.createInterfaceName(interfaceNameType);
View Full Code Here

TOP

Related Classes of org.objectweb.celtix.ws.addressing.wsdl.AttributedQNameType

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.