Examples of QNameStrategy


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

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
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.