Package org.apache.camel.dataformat.soap.name

Examples of org.apache.camel.dataformat.soap.name.QNameStrategy


     * it was given on the constructor
     */
    @Test
    public void testQName() {
        QName elementName = new QName("http://my.name.org", "myElement");
        QNameStrategy strategy = new QNameStrategy(elementName);
       
        QName actualElementName = strategy.findQNameForSoapActionOrType(null, GetCustomersByName.class);
        Assert.assertEquals(elementName, actualElementName);
    }
View Full Code Here


     * it was given on the constructor
     */
    @Test
    public void testQName() {
        QName elementName = new QName("http://my.name.org", "myElement");
        QNameStrategy strategy = new QNameStrategy(elementName);
       
        QName actualElementName = strategy.findQNameForSoapActionOrType(null, GetCustomersByName.class);
        Assert.assertEquals(elementName, actualElementName);
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.dataformat.soap.name.QNameStrategy

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.