Package org.jdesktop.wonderland.common.wfs

Examples of org.jdesktop.wonderland.common.wfs.WorldRootList


        List<WFSRoot> rootList = wfsm.getWFSRoots();
        List<String> rootNames = new ArrayList<String>(rootList.size());
        for (WFSRoot root : rootList) {
            rootNames.add(root.getRootPath());
        }
        WorldRootList wfsRoots = new WorldRootList(rootNames.toArray(new String[0]));
       
        /* Send the serialized cell names to the client */
        ResponseBuilder rb = Response.ok(wfsRoots);
        return rb.build();
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.common.wfs.WorldRootList

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.