Interface of classes that know how to handle a specific event. The concept of
handling an event usually implies that the handler will perform some form of
logging such as using Log4j or writing the information to a database.
author: Scott Battaglia version: $Revision: 36546 $ $Date: 2006-04-11 12:18:23 -0700 (Tue, 11 Apr 2006) $ since: 3.0
Method Summary
void
handleEvent(PortalEvent event) Method to handle any processing of the event that is needed.
boolean
supports(PortalEvent event) Method to check if this handler will be able to process the event.
Parameters: event - the event we want to check if we support.
Method to check if this handler will be able to process the event.
Parameters: event - the event we want to check if we support. true if the event is supported, false otherwise.