D | ServletsModuleBuilder.java | 16 package com.google.inject.servlet; 27 import javax.servlet.http.HttpServlet; 96 public void with(HttpServlet servlet) { in with() argument 97 with(servlet, new HashMap<String, String>()); in with() 122 public void with(HttpServlet servlet, Map<String, String> initParams) { in with() argument 124 binder.bind(servletKey).toInstance(servlet); in with() 125 with(servletKey, initParams, servlet); in with()
|