MCPcopy Index your code
hub / github.com/apache/tomcat / createStopDigester

Method createStopDigester

java/org/apache/catalina/startup/Catalina.java:627–640  ·  view source on GitHub ↗

Create and configure the Digester we will be using for shutdown. @return the digester to process the stop operation

()

Source from the content-addressed store, hash-verified

625 * @return the digester to process the stop operation
626 */
627 protected Digester createStopDigester() {
628
629 // Initialize the digester
630 Digester digester = new Digester();
631 digester.setUseContextClassLoader(true);
632
633 // Configure the rules we need for shutting down
634 digester.addObjectCreate("Server", "org.apache.catalina.core.StandardServer", "className");
635 digester.addSetProperties("Server");
636 digester.addSetNext("Server", "setServer", "org.apache.catalina.Server");
637
638 return digester;
639
640 }
641
642
643 /**

Callers 1

parseServerXmlMethod · 0.95

Calls 4

addObjectCreateMethod · 0.95
addSetPropertiesMethod · 0.95
addSetNextMethod · 0.95

Tested by

no test coverage detected