gistoolkit.server.mapservice
Interface ExtensionService

All Known Implementing Classes:
SimpleExtensionService

public interface ExtensionService

Provides the ability to plug additional functionality into the map service.


Method Summary
 void doGet(Request inRequest, Response inResponse)
          Called when a request is sent to this service.
 java.lang.String getName()
          Called to identify this service.
 Node getNode()
          Called to get the configuration information for this service.
 void setNode(Node inNode)
          Called to set the configuration information for this service.
 void setServer(Server inServer)
          Called before the first request is sent to the server, just after the set Node.
 

Method Detail

getName

public java.lang.String getName()
Called to identify this service.


doGet

public void doGet(Request inRequest,
                  Response inResponse)
           throws java.lang.Exception
Called when a request is sent to this service.

Throws:
java.lang.Exception

setNode

public void setNode(Node inNode)
Called to set the configuration information for this service.


getNode

public Node getNode()
Called to get the configuration information for this service.


setServer

public void setServer(Server inServer)
Called before the first request is sent to the server, just after the set Node.