Package org.geoserver.gwc

Examples of org.geoserver.gwc.ConfigurableQuotaStoreProvider


        }
        add(label);
    }

    static Exception getException() {
        ConfigurableQuotaStoreProvider provider = GeoServerApplication.get().getBeanOfType(ConfigurableQuotaStoreProvider.class);
        Exception exception = provider.getException();
        return exception;
    }
View Full Code Here


        final boolean diskQuotaModuleDisabled = gwc.getDiskQuotaConfig() == null;
       
        // get the quota store config, show an error message in case the quota
        // store loading failed
        ConfigurableQuotaStoreProvider provider = GeoServerApplication.get().getBeanOfType(ConfigurableQuotaStoreProvider.class);
        if(provider.getException() != null) {
            ParamResourceModel rm = new ParamResourceModel("GWC.diskQuotaLoadFailed", null, provider.getException().getMessage());
            error(rm.getString());
        }

        // use a dettached copy of dq config to support the tabbed pane
        final DiskQuotaConfig diskQuotaConfig;
View Full Code Here

TOP

Related Classes of org.geoserver.gwc.ConfigurableQuotaStoreProvider

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.