Package org.huihoo.willow.core

Examples of org.huihoo.willow.core.StandardContext


    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);
  }
View Full Code Here

TOP

Related Classes of org.huihoo.willow.core.StandardContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.