01: /* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
02: * This code is licensed under the GPL 2.0 license, availible at the root
03: * application directory.
04: */
05: package org.geoserver.wfsv.xml.v1_1_0;
06:
07: import org.geotools.xml.BindingConfiguration;
08: import org.picocontainer.MutablePicoContainer;
09:
10: /**
11: * Binding configuration for the http://www.opengis.net/wfsv schema.
12: *
13: * @generated
14: */
15: public final class WFSVBindingConfiguration implements
16: BindingConfiguration {
17:
18: /**
19: * @generated modifiable
20: */
21: public void configure(MutablePicoContainer container) {
22:
23: //Types
24: container.registerComponentImplementation(
25: WFSV.DifferenceQueryType,
26: DifferenceQueryTypeBinding.class);
27: container.registerComponentImplementation(
28: WFSV.DescribeVersionedFeatureTypeType,
29: DescribeVersionedFeatureTypeTypeBinding.class);
30: container.registerComponentImplementation(WFSV.GetDiffType,
31: GetDiffTypeBinding.class);
32: container.registerComponentImplementation(WFSV.GetLogType,
33: GetLogTypeBinding.class);
34: container.registerComponentImplementation(
35: WFSV.GetVersionedFeatureType,
36: GetVersionedFeatureTypeBinding.class);
37: container.registerComponentImplementation(WFSV.RollbackType,
38: RollbackTypeBinding.class);
39: container.registerComponentImplementation(
40: WFSV.VersionedDeleteElementType,
41: VersionedDeleteElementTypeBinding.class);
42: container.registerComponentImplementation(
43: WFSV.VersionedFeatureCollectionType,
44: VersionedFeatureCollectionTypeBinding.class);
45: container.registerComponentImplementation(
46: WFSV.VersionedUpdateElementType,
47: VersionedUpdateElementTypeBinding.class);
48:
49: }
50:
51: }
|