oracle.panama.rt.event
Class RequestAdapter

java.lang.Object
  |
  +--oracle.panama.rt.event.RequestAdapter
All Implemented Interfaces:
RequestListener

public abstract class RequestAdapter
extends java.lang.Object
implements RequestListener

An abstract adapter class for receiving request events. The methods in this class are empty. This class exists as convenience for creating listener objects.

Since:
Oracle9i Application Server Wireless Edition

Constructor Summary
RequestAdapter()
           
 
Method Summary
TypeMethod
 void afterRequest(RequestEvent event)
          The event notification after end of request
 void beforeRequest(RequestEvent event)
          The event notification before start of request
 void requestBegin(RequestEvent event)
          The event notification when request begin
 void requestEnd(RequestEvent event)
          The event notification when request end
 void requestError(RequestEvent event)
          The event notification when error occurred
 void serviceBegin(RequestEvent event)
          The event notification when service begin
 void serviceEnd(RequestEvent event)
          The event notification when service end
 void transformBegin(RequestEvent event)
          The event notification when transform begin
 void transformEnd(RequestEvent event)
          The event notification when transform end
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RequestAdapter

public RequestAdapter()
Method Detail

beforeRequest

public void beforeRequest(RequestEvent event)
                   throws AbortServiceException
The event notification before start of request
Specified by:
beforeRequest in interface RequestListener
Parameters:
an - event

requestBegin

public void requestBegin(RequestEvent event)
                  throws AbortServiceException
The event notification when request begin
Specified by:
requestBegin in interface RequestListener
Parameters:
an - event

serviceBegin

public void serviceBegin(RequestEvent event)
                  throws AbortServiceException
The event notification when service begin
Specified by:
serviceBegin in interface RequestListener
Parameters:
an - event

serviceEnd

public void serviceEnd(RequestEvent event)
                throws AbortServiceException
The event notification when service end
Specified by:
serviceEnd in interface RequestListener
Parameters:
an - event

transformBegin

public void transformBegin(RequestEvent event)
                    throws AbortServiceException
The event notification when transform begin
Specified by:
transformBegin in interface RequestListener
Parameters:
an - event

transformEnd

public void transformEnd(RequestEvent event)
                  throws AbortServiceException
The event notification when transform end
Specified by:
transformEnd in interface RequestListener
Parameters:
an - event

requestEnd

public void requestEnd(RequestEvent event)
                throws AbortServiceException
The event notification when request end
Specified by:
requestEnd in interface RequestListener
Parameters:
an - event

requestError

public void requestError(RequestEvent event)
                  throws AbortServiceException
The event notification when error occurred
Specified by:
requestError in interface RequestListener
Parameters:
an - event

afterRequest

public void afterRequest(RequestEvent event)
                  throws AbortServiceException
The event notification after end of request
Specified by:
afterRequest in interface RequestListener
Parameters:
an - event