Examples of initFeatureType()


Examples of org.geoserver.catalog.CatalogBuilder.initFeatureType()

            featureType.setNamespace( catalog.getNamespaceByPrefix( workspace ) );
        }
        featureType.setEnabled(true);
       
        CatalogBuilder cb = new CatalogBuilder(catalog);
        cb.initFeatureType( featureType );
       
        if ( featureType.getStore() == null ) {
            //get from requests
            DataStoreInfo ds = catalog.getDataStoreByName( workspace, dataStore );
            featureType.setStore( ds );
View Full Code Here

Examples of org.geoserver.catalog.CatalogBuilder.initFeatureType()

                }
            }
        }
       
        CatalogBuilder cb = new CatalogBuilder(catalog);
        cb.initFeatureType( featureType );

        //attempt to fill in metadata from underlying feature source
        try {
            FeatureSource featureSource =
                    gtda.getFeatureSource(new NameImpl(featureType.getNativeName()));
View Full Code Here

Examples of org.geoserver.catalog.CatalogBuilder.initFeatureType()

                featureType.setNativeName(featureType.getName().toLowerCase());
            }
        }
       
        CatalogBuilder cb = new CatalogBuilder(catalog);
        cb.initFeatureType( featureType );
       
        if ( featureType.getStore() == null ) {
            //get from requests
            featureType.setStore( ds );
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.