Package org.geoserver.data

Examples of org.geoserver.data.DefaultGeoServerCatalog


  public FullApplicationContext( boolean wfsEnabled, boolean wmsEnabled ) {
    super();
   
    beans = new HashMap();
   
    beans.put("catalog", new DefaultGeoServerCatalog());
    beans.put("controller", new PreferenceStoreImpl(new BlankStore()));
   
    wfsDTO.setService(new ServiceDTO());
    wfsDTO.getService().setEnabled(wfsEnabled );
    beans.put("wfs", new WFS(wfsDTO));
View Full Code Here


  public IStatusReport checkStatus() {
    int status = IStatusReport.OKAY;
    Exception message = null;
   
    DefaultGeoServerCatalog catalog = null;
    try {
      catalog = (DefaultGeoServerCatalog) applicationContext.getBean("catalog");
    } catch (Exception e) {
      status = IStatusReport.ERROR;
      message = e;
View Full Code Here

TOP

Related Classes of org.geoserver.data.DefaultGeoServerCatalog

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.