org.springframework.context
Interface ApplicationListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
ConsoleListener, PerformanceMonitorListener

public interface ApplicationListener
extends EventListener

Interface to be implemented by application event listeners. Based on standard java.util base interface for Observer design pattern.

Author:
Rod Johnson
See Also:
ApplicationEventMulticaster

Method Summary
 void onApplicationEvent(ApplicationEvent event)
          Handle an application event.
 

Method Detail

onApplicationEvent

void onApplicationEvent(ApplicationEvent event)
Handle an application event.

Parameters:
event - the event to respond to


Copyright (c) 2002-2007 The Spring Framework Project.