org.vfny.geoserver.util.requests.readers |
GeoServer Request Readers Package
Client request processing into GeoServer Request objects.
These classes are instnaces of KvpRequestReader or XmlRequestReader and are
used by the GeoServer handlers to parse information into Request Objects.
|
Java Source File Name | Type | Comment |
DispatcherKvpReader.java | Class | Reads in a generic request and attempts to determine its type. |
DispatcherXmlReader.java | Class | This reads in a request and figures out what servlet to dispatch it to.
This does not extend XmlRequestReader, since it does not actually create
the Request, it is just used to pass on the request to a service that can
make the request. |
KvpRequestReader.java | Class | Base class for all KVP readers, with some generalized convenience methods.
If you pass this utility a KVP request (everything after the '?' in the GET
request URI), it will translate this into a list of key-word value
pairs.These pairs represent every element in the KVP GET request, legal or
otherwise. |
XmlRequestReader.java | Class | This utility reads in XML requests and returns them as appropriate request
objects. |