Package org.apache.cxf.javascript.fortest.aegis

Examples of org.apache.cxf.javascript.fortest.aegis.BeanWithAnyTypeArray


            oneWayLatch.countDown();
        }
    }

    public BeanWithAnyTypeArray returnBeanWithAnyTypeArray() {
        BeanWithAnyTypeArray bwata = new BeanWithAnyTypeArray();
        bwata.setString("lima");
        Object[] obs = new Object[3];
        obs[0] = new Mammal();
        obs[1] = new Integer(42);
        obs[2] = new Vegetable(); // this is NOT in the WSDL.
        bwata.setObjects(obs);
        return bwata;
    }
View Full Code Here


            oneWayLatch.countDown();
        }
    }

    public BeanWithAnyTypeArray returnBeanWithAnyTypeArray() {
        BeanWithAnyTypeArray bwata = new BeanWithAnyTypeArray();
        bwata.setString("lima");
        Object[] obs = new Object[3];
        obs[0] = new Mammal();
        obs[1] = new Integer(42);
        obs[2] = new Vegetable(); // this is NOT in the WSDL.
        bwata.setObjects(obs);
        return bwata;
    }
View Full Code Here

    public void acceptObjects(Collection<Object> anything) {
        acceptedObjects = anything;
    }

    public BeanWithAnyTypeArray returnBeanWithAnyTypeArray() {
        BeanWithAnyTypeArray bwata = new BeanWithAnyTypeArray();
        bwata.setString("lima");
        Object[] obs = new Object[3];
        obs[0] = new Mammal();
        obs[1] = new Integer(42);
        obs[2] = new Vegetable(); // this is NOT in the WSDL.
        bwata.setObjects(obs);
        return bwata;
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.javascript.fortest.aegis.BeanWithAnyTypeArray

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.