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.wfs.xml.v1_0_0;
06:
07: import org.geotools.xml.BindingConfiguration;
08: import org.picocontainer.MutablePicoContainer;
09:
10: /**
11: * Binding configuration for the http://www.opengis.net/wfs schema.
12: *
13: * @generated
14: */
15: public final class WFSBindingConfiguration implements
16: BindingConfiguration {
17: /**
18: * @generated modifiable
19: */
20: public void configure(MutablePicoContainer container) {
21: //Types
22: container.registerComponentImplementation(WFS.ALLSOMETYPE,
23: AllSomeTypeBinding.class);
24: container.registerComponentImplementation(
25: WFS.DELETEELEMENTTYPE, DeleteElementTypeBinding.class);
26: container.registerComponentImplementation(
27: WFS.DESCRIBEFEATURETYPETYPE,
28: DescribeFeatureTypeTypeBinding.class);
29: container.registerComponentImplementation(WFS.EMPTYTYPE,
30: EmptyTypeBinding.class);
31: container.registerComponentImplementation(
32: WFS.FEATURECOLLECTIONTYPE,
33: FeatureCollectionTypeBinding.class);
34: container
35: .registerComponentImplementation(
36: WFS.FEATURESLOCKEDTYPE,
37: FeaturesLockedTypeBinding.class);
38: container.registerComponentImplementation(
39: WFS.FEATURESNOTLOCKEDTYPE,
40: FeaturesNotLockedTypeBinding.class);
41: container.registerComponentImplementation(
42: WFS.GETCAPABILITIESTYPE,
43: GetCapabilitiesTypeBinding.class);
44: container.registerComponentImplementation(WFS.GETFEATURETYPE,
45: GetFeatureTypeBinding.class);
46: container.registerComponentImplementation(
47: WFS.GETFEATUREWITHLOCKTYPE,
48: GetFeatureWithLockTypeBinding.class);
49: container.registerComponentImplementation(
50: WFS.INSERTELEMENTTYPE, InsertElementTypeBinding.class);
51: container.registerComponentImplementation(WFS.INSERTRESULTTYPE,
52: InsertResultTypeBinding.class);
53: container.registerComponentImplementation(WFS.LOCKFEATURETYPE,
54: LockFeatureTypeBinding.class);
55: container.registerComponentImplementation(WFS.LOCKTYPE,
56: LockTypeBinding.class);
57: container.registerComponentImplementation(WFS.NATIVETYPE,
58: NativeTypeBinding.class);
59: container.registerComponentImplementation(WFS.PROPERTYTYPE,
60: PropertyTypeBinding.class);
61: container.registerComponentImplementation(WFS.QUERYTYPE,
62: QueryTypeBinding.class);
63: container.registerComponentImplementation(WFS.STATUSTYPE,
64: StatusTypeBinding.class);
65: container.registerComponentImplementation(
66: WFS.TRANSACTIONRESULTTYPE,
67: TransactionResultTypeBinding.class);
68: container.registerComponentImplementation(WFS.TRANSACTIONTYPE,
69: TransactionTypeBinding.class);
70: container.registerComponentImplementation(
71: WFS.UPDATEELEMENTTYPE, UpdateElementTypeBinding.class);
72: container.registerComponentImplementation(
73: WFS.WFS_LOCKFEATURERESPONSETYPE,
74: WFS_LockFeatureResponseTypeBinding.class);
75: container.registerComponentImplementation(
76: WFS.WFS_TRANSACTIONRESPONSETYPE,
77: WFS_TransactionResponseTypeBinding.class);
78: }
79: }
|