+

Search Tips   |   Advanced Search

 

Create custom Common Base Event factory homes

 

Use custom Common Base Event factory homes to control configuration and implementation of unique event factories.

Event factory homes create and provide homes for Event Factory instances. Each event factory home has a content handler. This content handler is assigned to every event factory the event factory home creates. In turn, when a Common Base Event is created, the content handler from the event factory is assigned to it. Event factory instances are maintained by the associated event factory home, based on their unique name. For example, when application code requests a named event factory, the newly created event factory instance is returned and persisted for future requests for that named event factory.

The following classes were added to facilitate the use of event eactory homes for logging Common Base Events:

Class Name Description
WsEventFactoryHomeImpl This class extends the org.eclipse.hyades.logging.events.cbe.impl.AbstractEventFactoryHome class. This event factory home returns event factory instances associated with the WsContentHandlerImpl content handler. The WsContentHandlerImpl is the content handler used by the WAS by default when no event factory template is in use.

WsTemplateEventFactory
HomeImpl

This class extends the org.eclipse.hyades.logging.events.cbe.impl.EventXMLFileEventFactoryHomeImpl class. This event factory home returns event factory instances associated with the WsTemplateContentHandlerImpl Content Handler. The WsTemplateContentHandlerImpl is the content handler used by the WAS when an Event Factory template is required.

 

Overview

Custom event factory homes support the use of Common Base Event for logging in WAS and make logging easy and consistent between the WAS runtime and the exploiters of this API. The CustomEventFactoryHome and CustomTemplateEventFactoryHome classes will be used to obtain an event factory. These classes are there to make sure the correct content handler is being used with a particular event factory. The CustomEventFactoryHelper class is an example of how the infrastructure provider can hide the factory selection details from infrastructure users, using their own set of parameters to decide which the appropriate event factory is.

 

Procedure

 

Results

Use the information provided here to implement a custom content factory home and the associated classes based on the settings specified.



Common Base Event factory home