Package org.jdesktop.wonderland.client.modules

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


     */
    @Override
    public String getDesiredChecksum() {
        // Fetch the cache of the module information for the given asset URI.
        // If null, then we log an error and return an empty array.
        CachedModule cachedModule = getCachedModule();
        if (cachedModule == null) {
            logger.warning("Unable to find module information for " +
                    getAssetURI().toExternalForm());
            return null;
        }
View Full Code Here


     */
    @Override
    public AssetRepository[] getAssetRepositories() {
        // Fetch the cache of the module information for the given asset URI.
        // If null, then we log an error and return an empty array.
        CachedModule cachedModule = getCachedModule();
        if (cachedModule == null) {
            logger.warning("Unable to find module information for " +
                    getAssetURI().toExternalForm());
            return new ModuleAssetRepository[] {};
        }
View Full Code Here

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

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.