return (provider);
}
public Context createContext(String name, String appBase)
{
log.debug("Creating context '" + name + "' with appBase '" + appBase + "'");
StandardContext context = new StandardContext();
context.setDebug(debug);
context.setName(name);
context.setAppBase(appBase);
ContextConfig config = new ContextConfig();
config.setDebug(debug);
((Lifecycle) context).addLifecycleListener(config);
return (context);
}