public class DebugBpelEventListener extends java.lang.Object implements BpelEventListener
BpelEventListener
interface.
Dumps navigation events to a logging appender and optionally to stdout.
To use the DebugBpelEventListener add the following lines to your
ode-xxx.properties file:
ode-jbi.event.listeners=org.apache.ode.bpel.common.evt.DebugBpelEventListener
debugeventlistener.dumpToStdOut=on/off
Constructor and Description |
---|
DebugBpelEventListener() |
Modifier and Type | Method and Description |
---|---|
void |
onEvent(BpelEvent bpelEvent)
Handle events.
|
void |
shutdown()
Allows the clean up in listener implementations.
|
void |
startup(java.util.Properties configProperties)
Allows the initialisation of listeners.
|
public void onEvent(BpelEvent bpelEvent)
BpelEventListener
onEvent
in interface BpelEventListener
bpelEvent
- BPEL eventpublic void startup(java.util.Properties configProperties)
BpelEventListener
configProperties
provide access to
configuration option defined in Ode's configuration file
(depends on the used IL implementation). This parameter might
be null if no configuration options are available (i.e. in test
cases).startup
in interface BpelEventListener
configProperties
- configuration propertiespublic void shutdown()
BpelEventListener
shutdown
in interface BpelEventListener