public class SpringContextEventPublisher extends Object implements org.springframework.context.ApplicationContextAware, EventListener
An event listener for all Spring application events so that they get published to the actual
Spring context.
Simply register this against your Spring context to handle event the same 'old' way
| Constructor and Description |
|---|
SpringContextEventPublisher() |
| Modifier and Type | Method and Description |
|---|---|
Class[] |
getHandledEventClasses()
Determine which event classes this listener is interested in.
|
void |
handleEvent(Event event)
Perform some action as a response to a Confluence event.
|
void |
setApplicationContext(org.springframework.context.ApplicationContext applicationContext) |
String |
toString() |
public void handleEvent(Event event)
EventListenerhandleEvent in interface EventListenerevent - some event triggered within Confluencepublic Class[] getHandledEventClasses()
EventListenerThe EventManager performs rudimentary filtering of events by their class. If you want to receive only a subset of events passing through the system, return an array of the Classes you wish to listen for from this method.
Listening for a class will also listen for all its subclasses. (And listening for an interface will listen for any implementation of that interface)
Returning an empty array will allow you to receive every event.
getHandledEventClasses in interface EventListenerpublic void setApplicationContext(org.springframework.context.ApplicationContext applicationContext)
setApplicationContext in interface org.springframework.context.ApplicationContextAwareCopyright © 2006-2017 Atlassian. All Rights Reserved.