| |
|
| java.lang.Object org.geoserver.ows.OWS org.vfny.geoserver.global.Service
All known Subclasses: org.vfny.geoserver.global.WCS, org.geoserver.wfs.WFS, org.vfny.geoserver.global.WMS,
Service | abstract public class Service extends OWS (Code) | | Default configuration for services. This class represents all the
commonalities to the WFS and WMS services.
WFS wfs = new WFS(dto); Service serv = (Service)WFS;
System.out.println(serv.getName());
author: Gabriel Rold?n author: Chris Holmes version: $Id: Service.java 6326 2007-03-15 18:36:40Z jdeolive $ See Also: WMS See Also: WFS |
Service | public Service(ServiceDTO dto)(Code) | | Service constructor.
Stores the new ServiceDTO data for this service.
Parameters: config - throws: NullPointerException - when the param is null |
getData | public Data getData()(Code) | | Access dt property.
Returns the dt. |
getGeoServer | public GeoServer getGeoServer()(Code) | | Access gs property.
Returns the gs. |
getPartialBufferSize | public int getPartialBufferSize()(Code) | | The size of the buffer used by the PARTIAL-BUFFER strategy.TODO: this should be factored out when config is splittable among modules. |
getStrategy | public String getStrategy()(Code) | | The strategy used by the service when performing a response. |
load | public void load(ServiceDTO dto)(Code) | | load purpose.
loads a new copy of data into this object.
Parameters: dto - |
setData | public void setData(Data dt)(Code) | | Set dt to dt.
Parameters: dt - The dt to set. |
setGeoServer | public void setGeoServer(GeoServer gs)(Code) | | Set gs to gs.
Parameters: gs - The gs to set. |
setPartialBufferSize | public void setPartialBufferSize(int partialBufferSize)(Code) | | Sets the size of the buffer used by the PARTIAL-BUFFER strategy.
TODO: this should be factored out when config is splittable among modules.
|
setStrategy | public void setStrategy(String strategy)(Code) | | Sets the strategy used by the service when performing a response.
|
|
|
|