org.springframework.context
Interface ApplicationEventPublisherAware

public interface ApplicationEventPublisherAware
Interface to be implemented by any object that wishes to be notified of the ApplicationEventPublisher (typically the ApplicationContext) that it runs in.
Since1.1.1
VersionNot specified.
AuthorJuergen Hoeller
Wiki javadoc Use textile entry format.
Add your comments here.
Method Summary
void setApplicationEventPublisher( ApplicationEventPublisher applicationEventPublisher )
Set the ApplicationEventPublisher that this object runs in.
setApplicationEventPublisher
public void setApplicationEventPublisher ( ApplicationEventPublisher applicationEventPublisher )
Set the ApplicationEventPublisher that this object runs in.

Invoked after population of normal bean properties but before an init callback like InitializingBean's afterPropertiesSet or a custom init-method. Invoked before ApplicationContextAware's setApplicationContext.

Parameters
TypeNameDescription
ApplicationEventPublisher applicationEventPublisher event publisher to be used by this object
Returns void No description provided.
Wiki javadoc Use textile entry format.
Add your comments here.