01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2005-2006, GeoTools Project Managment Committee (PMC)
05: * (C) 2001, Institut de Recherche pour le Développement
06: *
07: * This library is free software; you can redistribute it and/or
08: * modify it under the terms of the GNU Lesser General Public
09: * License as published by the Free Software Foundation;
10: * version 2.1 of the License.
11: *
12: * This library is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: */
17: package org.geotools.referencing.factory.epsg;
18:
19: // Geotools dependencies
20: import org.geotools.factory.Hints;
21:
22: /**
23: * Base class for EPSG factories to be registered in {@link ReferencingFactoryFinder}.
24: *
25: * @since 2.1
26: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/referencing/src/main/java/org/geotools/referencing/factory/epsg/DefaultFactory.java $
27: * @version $Id: DefaultFactory.java 26328 2007-07-24 16:57:19Z desruisseaux $
28: * @author Martin Desruisseaux
29: *
30: * @deprecated Renamed as {@link ThreadedEpsgFactory}.
31: * The name {@code DefaultFactory} was viewed as confusing.
32: */
33: public class DefaultFactory extends ThreadedEpsgFactory {
34: /**
35: * Constructs an authority factory using the default set of factories.
36: */
37: public DefaultFactory() {
38: }
39:
40: /**
41: * Constructs an authority factory with the default priority.
42: */
43: public DefaultFactory(final Hints userHints) {
44: super (userHints);
45: }
46:
47: /**
48: * Constructs an authority factory using a set of factories created from the specified hints.
49: *
50: * @since 2.4
51: */
52: public DefaultFactory(final Hints userHints, final int priority) {
53: super(userHints, priority);
54: }
55: }
|