Package org.apache.camel.component.spring.ws.jaxb

Examples of org.apache.camel.component.spring.ws.jaxb.QuoteResponse


        Object result = template.requestBody("direct:webservice-marshall-unmarshall", request);

        assertNotNull(result);
        assertTrue(result instanceof QuoteResponse);
        QuoteResponse quoteResponse = (QuoteResponse) result;
        assertEquals("Google Inc.", quoteResponse.getName());
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.component.spring.ws.jaxb.QuoteResponse

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.