Examples of ExtendedWidget


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

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

*/
@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

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

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