Package org.apache.cxf.systest.jaxws.base

Examples of org.apache.cxf.systest.jaxws.base.WrapperString


public class TestServiceImpl implements TestService {
    @Override
    public List<WrapperString> getList() {
        List<WrapperString> list = new ArrayList<WrapperString>();

        list.add(new WrapperString("Test"));
        list.add(new WrapperString("Test 2"));

        return list;
    }
View Full Code Here


public class TestServiceImpl implements TestService {

    public List<WrapperString> getList() {
        List<WrapperString> list = new ArrayList<WrapperString>();

        list.add(new WrapperString("Test"));
        list.add(new WrapperString("Test 2"));

        return list;
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.systest.jaxws.base.WrapperString

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.