org.deegree.services
Interface Handler

All Superinterfaces:
java.util.EventListener
All Known Subinterfaces:
DataStore, Dispatcher
All Known Implementing Classes:
AbstractDataStore, AbstractHandler, CapabilitiesHandler, DescribeTransformationHandler, Dispatcher_Impl, IsTransformableHandler, TransformHandler, WCASService_Impl, WCService_Impl, WFSService_Impl

public interface Handler
extends java.util.EventListener

--------------------------------------------------------------------

Version:
2002-03-31
Author:
Andreas Poth

Method Summary
 void handleRequest(OGCWebServiceEvent request)
          handles a request against an OGC web service
 void handleResponse(OGCWebServiceEvent response)
          handles the response of an OGC web service
 boolean isInterested(OGCWebServiceEvent event)
          returns true if the handler is interested in a event
 void registerHandler(Handler handler)
          registers a Handler so this Handler is able to act as a proxy to the registered handler
 void removeHandler(Handler handler)
           
 

Method Detail

handleRequest

public void handleRequest(OGCWebServiceEvent request)
handles a request against an OGC web service


handleResponse

public void handleResponse(OGCWebServiceEvent response)
handles the response of an OGC web service


isInterested

public boolean isInterested(OGCWebServiceEvent event)
returns true if the handler is interested in a event


registerHandler

public void registerHandler(Handler handler)
registers a Handler so this Handler is able to act as a proxy to the registered handler


removeHandler

public void removeHandler(Handler handler)
See Also:
registerHandler(Handler)