Examples of WrapperString


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

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

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