Package org.apache.cxf.systest.jaxb.model

Examples of org.apache.cxf.systest.jaxb.model.ExtendedWidget



    @Test
    public void testExtraSubClassWithJaxb() throws Throwable {

        Widget expected = new ExtendedWidget(42, "blah", "blah", true, true);

        Widget widgetFromService = testClient.getWidgetById((long)42);

        assertEquals(expected, widgetFromService);
View Full Code Here


*/
@WebService(endpointInterface = "org.apache.cxf.systest.jaxb.service.TestService")
public class TestServiceImpl implements TestService {

    public Widget getWidgetById(long id) {
        return new ExtendedWidget(id, "blah", "blah", true, true);
    }
View Full Code Here

        testUtilities = new TestUtilities(getClass());
    }

    @Test
    public void testExtraSubClassWithJaxb() throws Throwable {
        Widget expected = new ExtendedWidget(42, "blah", "blah", true, true);

        Widget widgetFromService = testClient.getWidgetById((long)42);

        assertEquals(expected, widgetFromService);
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.systest.jaxb.model.ExtendedWidget

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.