org.springframework.context
Interface ApplicationListener

public interface ApplicationListener
extends EventListener
Interface to be implemented by application event listeners. Based on standard java.util base interface for Observer design pattern.
SinceNot specified.
VersionNot specified.
AuthorRod Johnson
Wiki javadoc Use textile entry format.
Add your comments here.
Method Summary
void onApplicationEvent( ApplicationEvent event )
Handle an application event.
onApplicationEvent
public void onApplicationEvent ( ApplicationEvent event )
Handle an application event.
Parameters
TypeNameDescription
ApplicationEvent event the event to respond to
Returns void No description provided.
Wiki javadoc Use textile entry format.
Add your comments here.