com.compoze.trigger
Interface IRequestHandler
- All Known Implementing Classes:
- ScheduleHandler, RemoveHandler, StatisticsHandler
- public interface IRequestHandler
Classes that implement this interface are capable of handling client
requests.
Method Summary |
java.lang.Object |
handleRequest(java.lang.Object request,
ConnectionContext connectionContext)
Handle the specified request. |
boolean |
handlesRequest(java.lang.Object request)
Test to see if this handler handles the specified request. |
handlesRequest
public boolean handlesRequest(java.lang.Object request)
- Test to see if this handler handles the specified request.
- Parameters:
request
- the request object- Returns:
- true if this handler handles this type of request
handleRequest
public java.lang.Object handleRequest(java.lang.Object request,
ConnectionContext connectionContext)
- Handle the specified request.
- Parameters:
request
- the request objectconnectionContext
- the connection context- Returns:
- the response object
Copyright ©1999-2001 Compoze Software, Inc. All rights reserved.