* Create and configure the XmlMapper we will be using for shutdown.
*/
protected XmlMapper createStopMapper() {
// Initialize the mapper
XmlMapper mapper = new XmlMapper();
// mapper.setDebug(999);
// Configure the actions we will be using
mapper.addRule("Server", mapper.objectCreate
("org.apache.catalina.core.StandardServer",
"className"));
mapper.addRule("Server", mapper.setProperties());
mapper.addRule("Server", mapper.addChild
("setServer", "org.apache.catalina.Server"));
return (mapper);
}