Package org.apache.catalina
Class LifecycleEvent
java.lang.Object
java.util.EventObject
org.apache.catalina.LifecycleEvent
- All Implemented Interfaces:
- Serializable
General event for notifying listeners of significant changes on a component
 that implements the Lifecycle interface.
- Author:
- Craig R. McClanahan
- See Also:
- 
Field SummaryFields inherited from class java.util.EventObjectsource
- 
Constructor SummaryConstructorsConstructorDescriptionLifecycleEvent(Lifecycle lifecycle, String type, Object data) Construct a new LifecycleEvent with the specified parameters.
- 
Method SummaryMethods inherited from class java.util.EventObjectgetSource, toString
- 
Constructor Details- 
LifecycleEventConstruct a new LifecycleEvent with the specified parameters.- Parameters:
- lifecycle- Component on which this event occurred
- type- Event type (required)
- data- Event data (if any)
 
 
- 
- 
Method Details- 
getData- Returns:
- the event data of this event.
 
- 
getLifecycle- Returns:
- the Lifecycle on which this event occurred.
 
- 
getType- Returns:
- the event type of this event.
 
 
-