//$HeadURL: https://svn.wald.intevation.org/svn/deegree/deegree3/trunk/deegree-datastores/deegree-featurestores/deegree-featurestore-simplesql/src/main/java/org/deegree/feature/persistence/simplesql/SimpleSQLFeatureStoreProvider.java $ /*---------------------------------------------------------------------------- This file is part of deegree, http://deegree.org/ Copyright (C) 2001-2009 by: - Department of Geography, University of Bonn - and - lat/lon GmbH - This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Contact information: lat/lon GmbH Aennchenstr. 19, 53177 Bonn Germany http://lat-lon.de/ Department of Geography, University of Bonn Prof. Dr. Klaus Greve Postfach 1147, 53001 Bonn Germany http://www.geographie.uni-bonn.de/deegree/ e-mail: info@deegree.org ----------------------------------------------------------------------------*/ package nl.ipo.cds.deegree.persistence; import java.net.URL; import org.deegree.feature.persistence.FeatureStore; import org.deegree.feature.persistence.FeatureStoreProvider; import org.deegree.workspace.ResourceLocation; import org.deegree.workspace.ResourceMetadata; import org.deegree.workspace.Workspace; /** * {@link FeatureStoreProvider} for the {@link SimpleSQLFeatureStore}. * * @author <a href="mailto:schneider@lat-lon.de">Markus Schneider</a> * @author last edited by: $Author: aschmitz $ * * @version $Revision: 30161 $, $Date: 2011-03-25 09:09:17 +0100 (vr, 25 mrt 2011) $ */ public class ExtendedSimpleSQLFeatureStoreProvider extends FeatureStoreProvider { private static final String CONFIG_NS = "urn:cds-inspire:deegree-extension:persistence"; static final URL CONFIG_SCHEMA = ExtendedSimpleSQLFeatureStoreProvider.class.getResource( "/META-INF/schemas/datasource/feature/extendedsimplesql/3.0.1/extendedsimplesql.xsd" ); @Override public String getNamespace() { return CONFIG_NS; } @Override public ResourceMetadata<FeatureStore> createFromLocation( Workspace workspace, ResourceLocation<FeatureStore> location ) { return new ExtendedSimpleSQLFeatureStoreMetadata( workspace, location, this ); } @Override public URL getSchema() { return CONFIG_SCHEMA; } }