Class WFSConfiguration
- Object
-
- Configuration
-
- WFSConfiguration
-
- Direct Known Subclasses:
WFSCapabilitiesConfiguration
public class WFSConfiguration extends Configuration
Parser configuration for the http://www.opengis.net/wfs/2.0 schema.
-
-
Constructor Summary
Constructors Constructor Description WFSConfiguration()
Creates a new configuration.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
configureContext(MutablePicoContainer container)
Configures the root context to be used when parsing elements.protected void
configureParser(Parser parser)
Configures the parser to be used with this configuration.protected void
registerBindings(Map<QName,Object> bindings)
Registers the bindings for the configuration.-
Methods inherited from class Configuration
addDependency, allDependencies, configureBindings, configureBindings, configureEncoder, equals, getContext, getDependencies, getDependency, getNamespaceURI, getProperties, getXSD, hashCode, hasProperty, registerBindings, setupBindings, setupContext, setupEncoder, setupParser
-
-
-
-
Method Detail
-
configureContext
protected void configureContext(MutablePicoContainer container)
Description copied from class:Configuration
Configures the root context to be used when parsing elements.The context satisfies any dependencies needed by a binding. This is often a factory used to create something.
This method should be overridden. The default implementation does nothing.
- Overrides:
configureContext
in classConfiguration
- Parameters:
container
- The container representing the context.
-
registerBindings
protected void registerBindings(Map<QName,Object> bindings)
Description copied from class:Configuration
Registers the bindings for the configuration.This method is intended to provide the "default" bindings for a configuration and is not intended to be subclassed by client code. Client code should use
Configuration.configureBindings(MutablePicoContainer)
to override/remove/add new bindings on the fly.The key of the bindings map is of type
QName
. The value can be class, or an instance. In the case of a class, the binding will be instantiated by the parser at runtime. In the instance case the binding will be used as is.- Overrides:
registerBindings
in classConfiguration
-
configureParser
protected void configureParser(Parser parser)
Description copied from class:Configuration
Configures the parser to be used with this configuration.This method provides a callback for Configuration instances to configure the parser with whatever options they require.
- Overrides:
configureParser
in classConfiguration
-
-