Package com.medallia.tiny.web

Examples of com.medallia.tiny.web.ServletContextAdapter


    servlet.init(new ServletConfig() {
      public String getServletName() { return null; }
      public String getInitParameter(String arg0) { return null; }
      public Enumeration getInitParameterNames() { return null; }
      public ServletContext getServletContext() {
        return new ServletContextAdapter() {
          @Override public String getRealPath(String relativePath) {
            return new File(JettyWebRunner.findWebRoot(), relativePath).getAbsolutePath();
          }
        };
      }
View Full Code Here

TOP

Related Classes of com.medallia.tiny.web.ServletContextAdapter

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.