org.jboss.web.tomcat.tc4
public class: AddEngineAction [javadoc |
source]
java.lang.Object
org.apache.commons.digester.Rule
org.jboss.web.tomcat.tc4.AddEngineAction
This action adds the current Engine on the top of the stack to the
Embedded object on the stack.
TOMCAT 4.1.12 UPDATE: Extends org.apache.jakarta.commons.Rule
- author:
Scott.Stark - @jboss.org
- version:
$ - Revision: 1.1.1.1 $
| Method from org.jboss.web.tomcat.tc4.AddEngineAction Summary: |
|---|
|
end |
| Method from org.jboss.web.tomcat.tc4.AddEngineAction Detail: |
public void end() throws Exception {
Engine engine = (Engine) digester.pop();
Object service = digester.pop();
Embedded catalina = (Embedded) digester.peek();
digester.push(service);
digester.push(engine);
catalina.addEngine(engine);
}
The stack must look like Embedded/Service/Engine |