Seam will fire different kinds of events that relate to particular scopes, tasks, or processes and appends the name of the scope, task or process to the end of the event.
How do I listen to all the events of a type?
E.g. for any <name>
I'd like to listen to events such as these:
org.jboss.seam.createProcess.<name>
— called when the process is createdorg.jboss.seam.endProcess.<name>
— called when the process endsorg.jboss.seam.initProcess.<name>
— called when the process is associated with the conversationorg.jboss.seam.startTask.<name>
— called when the task is startedorg.jboss.seam.endTask.<name>
— called when the task is ended
I need to do this despite not knowing the list of valid names up front... :-(
I hope to be using @Observer to create the observer, or something similar, and I'll listen to up to two event classes in the same component.