Package org.apache.catalina.startup
Class EngineConfig
- java.lang.Object
- 
- org.apache.catalina.startup.EngineConfig
 
- 
- All Implemented Interfaces:
- LifecycleListener
 
 public class EngineConfig extends java.lang.Object implements LifecycleListener Startup event listener for an Engine that configures the properties of that Engine, and the associated defined contexts.- Author:
- Craig R. McClanahan
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected EngineengineThe Engine we are associated with.protected static StringManagersmThe string resources for this package.
 - 
Constructor SummaryConstructors Constructor Description EngineConfig()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidlifecycleEvent(LifecycleEvent event)Process the START event for an associated Engine.protected voidstart()Process a "start" event for this Engine.protected voidstop()Process a "stop" event for this Engine.
 
- 
- 
- 
Field Detail- 
engineprotected Engine engine The Engine we are associated with.
 - 
smprotected static final StringManager sm The string resources for this package.
 
- 
 - 
Method Detail- 
lifecycleEventpublic void lifecycleEvent(LifecycleEvent event) Process the START event for an associated Engine.- Specified by:
- lifecycleEventin interface- LifecycleListener
- Parameters:
- event- The lifecycle event that has occurred
 
 - 
startprotected void start() Process a "start" event for this Engine.
 - 
stopprotected void stop() Process a "stop" event for this Engine.
 
- 
 
-