01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2004-2006, GeoTools Project Managment Committee (PMC)
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: */
16: package org.geotools.referencing.factory.epsg;
17:
18: // J2SE dependencies
19: import java.sql.Connection;
20:
21: // Geotools dependencies
22: import org.geotools.factory.Hints;
23:
24: /**
25: * An EPSG factory for the database generated by SQL scripts rather than the MS-Access one.
26: *
27: * @since 2.1
28: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/referencing/src/main/java/org/geotools/referencing/factory/epsg/FactoryUsingAnsiSQL.java $
29: * @version $Id: FactoryUsingAnsiSQL.java 26328 2007-07-24 16:57:19Z desruisseaux $
30: * @author Rueben Schulz
31: * @author Martin Desruisseaux
32: * @author Didier Richard
33: * @author John Grange
34: *
35: * @deprecated Renamed as {@link AnsiDialectEpsgFactory}.
36: */
37: public class FactoryUsingAnsiSQL extends AnsiDialectEpsgFactory {
38: /**
39: * Constructs an authority factory using the specified connection.
40: *
41: * @param userHints The underlying factories used for objects creation.
42: * @param connection The connection to the underlying EPSG database.
43: *
44: * @since 2.2
45: */
46: public FactoryUsingAnsiSQL(final Hints userHints,
47: final Connection connection) {
48: super(userHints, connection);
49: }
50: }
|