Package org.jdesktop.wonderland.client.modules

Examples of org.jdesktop.wonderland.client.modules.ServerCache


        // asset path
        ModuleURI assetURI = (ModuleURI)getAssetURI();
        String moduleName = assetURI.getModuleName();
        String serverURL = assetURI.getServerURL();

        ServerCache serverCache = ServerCache.getServerCache(serverURL);
        if (serverCache == null) {
            logger.warning("Unable to locate cache of modules for the server " + serverURL);
            return null;
        }

        CachedModule cachedModule = serverCache.getModule(moduleName);
        if (cachedModule == null) {
            logger.warning("Unable to locate module " + moduleName +
                    " on the server " + serverURL);
            return null;
        }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.client.modules.ServerCache

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.