Package org.geoserver.catalog.impl

Examples of org.geoserver.catalog.impl.StoreInfoImpl


    protected void resolve(NamespaceInfo namespace) {
        resolveCollections(namespace);
    }

    protected void resolve(StoreInfo store) {
        StoreInfoImpl s = (StoreInfoImpl) store;

        // resolve the workspace
        WorkspaceInfo resolved = ResolvingProxy.resolve(this, s.getWorkspace());
        if (resolved != null) {
            s.setWorkspace(resolved);
        } else {
            // this means the workspace has not yet been added to the catalog, keep the proxy around
        }
        resolveCollections(s);

        s.setCatalog(this);
    }
View Full Code Here

TOP

Related Classes of org.geoserver.catalog.impl.StoreInfoImpl

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.