public class BasicFactory extends java.lang.Object implements Factory
Factory
interface.Constructor and Description |
---|
BasicFactory() |
Modifier and Type | Method and Description |
---|---|
static java.lang.Object |
create(java.lang.String factoryKey,
java.lang.Object configSource)
Static method to create an object from a factory and configuration source.
|
static java.lang.Object |
create(java.lang.String factoryKey,
java.lang.Object configSource,
AVList params)
Static method to create an object from a factory, a configuration source, and an optional configuration parameter
list.
|
java.lang.Object |
createFromCapabilities(java.lang.String capsFileName,
AVList params)
Create an object such as a layer or elevation model given a local OGC capabilities document containing named
layer descriptions.
|
java.lang.Object |
createFromConfigSource(java.lang.Object configSource,
AVList params)
Creates an object from a general configuration source.
|
protected java.lang.Object |
doCreateFromCapabilities(OGCCapabilities caps,
AVList params)
Implemented by subclasses to perform the actual object creation.
|
protected java.lang.Object |
doCreateFromCapabilities(WCS100Capabilities caps,
AVList params)
Implemented by subclasses to perform the actual object creation.
|
protected java.lang.Object |
doCreateFromElement(org.w3c.dom.Element domElement,
AVList params) |
public static java.lang.Object create(java.lang.String factoryKey, java.lang.Object configSource)
factoryKey
- the key identifying the factory in Configuration
.configSource
- the configuration source. May be any of the types listed for createFromConfigSource(Object, gov.nasa.worldwind.avlist.AVList)
java.lang.IllegalArgumentException
- if the factory key is null, or if the configuration source is null or an empty
string.public static java.lang.Object create(java.lang.String factoryKey, java.lang.Object configSource, AVList params)
factoryKey
- the key identifying the factory in Configuration
.configSource
- the configuration source. May be any of the types listed for createFromConfigSource(Object, gov.nasa.worldwind.avlist.AVList)
params
- key-value parameters to override or supplement the information provided in the specified
configuration source. May be null.java.lang.IllegalArgumentException
- if the factory key is null, or if the configuration source is null or an empty
string.public java.lang.Object createFromCapabilities(java.lang.String capsFileName, AVList params)
capsFileName
- the path to the capabilities file. The file must be either an absolute path or a relative
path available on the classpath. The file contents must be a valid OGC capabilities
document.params
- a list of configuration properties. These properties override any specified in the
capabilities document. The list should contain the AVKey.LAYER_NAMES
property for
services that define layer, indicating which named layers described in the capabilities
document to create. If this argumet is null or contains no layers, the first named layer is
used.java.lang.IllegalArgumentException
- if the file name is null or empty.java.lang.IllegalStateException
- if the capabilites document contains no named layer definitions.WWRuntimeException
- if an error occurs while opening, reading or parsing the capabilities document.
The exception indicating the source of the failure is included as the Throwable.initCause(Throwable)
.public java.lang.Object createFromConfigSource(java.lang.Object configSource, AVList params)
URL
File
InputStream
Element
OGCCapabilities
WCS100Capabilities
String
holding a file name, a name of a resource on the classpath, or a string representation of a
URLcreateFromConfigSource
in interface Factory
configSource
- the configuration source. See above for supported types.params
- key-value parameters to override or supplement the information provided in the specified
configuration source. May be null.java.lang.IllegalArgumentException
- if the configuration source is null or an empty string.WWUnrecognizedException
- if the source type is unrecognized.WWRuntimeException
- if object creation fails. The exception indicating the source of the failure is
included as the Throwable.initCause(Throwable)
.protected java.lang.Object doCreateFromCapabilities(OGCCapabilities caps, AVList params)
caps
- the capabilities document.params
- a list of configuration properties. These properties override any specified in the capabilities
document. The list should contain the AVKey.LAYER_NAMES
property for services that define
layers, indicating which named layers described in the capabilities document to create. If this
argumet is null or contains no layers, the first named layer is used.protected java.lang.Object doCreateFromCapabilities(WCS100Capabilities caps, AVList params)
caps
- the capabilities document.params
- a list of configuration properties. These properties override any specified in the capabilities
document.protected java.lang.Object doCreateFromElement(org.w3c.dom.Element domElement, AVList params) throws java.lang.Exception
java.lang.Exception