Each event extension definition in the CBE event definition file is converted to a Enterprise Console event class definition. The following attributes of a CBE event definition are used to determine the name of class and the event superclass for the corresponding Enterprise Console event class definition:
Mapped to the Enterprise Console event definition class name. For instance, a CBE event definition like this:
<eventDefinition name="Transaction"> ... </eventDefinition>
would be mapped to a Enterprise Console event definition class like this:
TEC_CLASS :
Transaction ISA EVENT
DEFINES
...
Mapped to the superclass for the Enterprise Console event definition class name. For instance, a CBE event definition like this:
<eventDefinition name="TransactionStarted" parent="Transaction"> ... </eventDefinition>
would be mapped to a Enterprise Console event definition class like this:
TEC_CLASS :
TransactionStarted ISA Transaction
DEFINES
...
Related topics
Mapping Common Base Event
attributes to Enterprise Console event attributes