Package lumis.portal.event
Operations of the event framework are available in the
IPortalEventManager
interface, whose instance is available at
ManagerFactory.getPortalEventManager()
.
Events must implement IPortalEvent
.
The events may be sent using the
IPortalEventManager.notifyObservers(lumis.portal.event.IPortalEvent)
method. The abstract event implementations AbstractPortalEvent
and AbstractTransactionalPortalEvent
makes creating
new events easier.
Observers must implement IPortalEventObserver
. Observers may be
registered using the IPortalEventManager
API or using the
Portal Configuration front-end. It is recommended to extend the
AbstractPortalEventObserver
class instead of implementing
the observer interface directly.
When the IPortalEventManager.notifyObservers(IPortalEvent)
method is called, each enabled observer is notified of the given event through
the IPortalEventObserver.onEvent(IPortalEvent)
method, if that observer's filter (specified by IPortalEventObserver.getEventFilter()
)
accepts the event.
The execution of IPortalEventFilter.accept(IPortalEvent)
and IPortalEventObserver.onEvent(IPortalEvent)
must not be time consuming, as it may impact the overall time response of the
portal.
- Since:
- 4.0.0
- Version:
- $Revision: 8100 $ $Date: 2007-09-03 11:54:38 -0300 (Mon, 03 Sep 2007) $
- See Also:
IPortalEvent
,IPortalEventObserver
,IPortalEventManager
-
Interface Summary Interface Description IPortalEvent All portal events must implement this interface.IPortalEventFilter FiltersIPortalEvent
instances, indicating which ones should be accepted.IPortalEventManager Provides operations and access to the portal monitoring framework.IPortalEventObserver An observer ofIPortalEvent
's. -
Class Summary Class Description AbstractPortalEvent An abstract implementation forIPortalEvent
.AbstractPortalEventObserver An abstract implementation forIPortalEventObserver
.AbstractTransactionalPortalEvent An event that is raised inside a transactional context.ObserverConfig The registration of an event observer class.PortalEventFilters Provides utility methods forIPortalEventFilter
manipulation. -
Enum Summary Enum Description PortalEventOperationType Specifies the type of operation that raised aIPortalEvent
.