Package org.geoserver.catalog

Examples of org.geoserver.catalog.CatalogVisitorAdapter


    private Set<String> findAllGraphics(WorkspaceInfo ws) throws IOException {
        final Catalog cat = geoServer.getCatalog();

        final Set<String> externalGraphics = new HashSet<String>();
       
        ws.accept( new CatalogVisitorAdapter() {
            @Override
            public void visit(WorkspaceInfo workspace) {
                for( StoreInfo store : cat.getStoresByWorkspace(workspace,StoreInfo.class)){
                    try {
                        store.accept(this);
View Full Code Here

TOP

Related Classes of org.geoserver.catalog.CatalogVisitorAdapter

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.