Home | History | Annotate | Download | only in servlet

Lines Matching refs:with

5  * you may not use this file except in compliance with the License.
31 * Builds the guice module that binds configured servlets, with their
65 public void with(Class<? extends HttpServlet> servletKey) {
66 with(Key.get(servletKey));
69 public void with(Key<? extends HttpServlet> servletKey) {
70 with(servletKey, new HashMap<String, String>());
73 public void with(HttpServlet servlet) {
74 with(servlet, new HashMap<String, String>());
77 public void with(Class<? extends HttpServlet> servletKey,
79 with(Key.get(servletKey), initParams);
82 public void with(Key<? extends HttpServlet> servletKey,
84 with(servletKey, initParams, null);
87 private void with(Key<? extends HttpServlet> servletKey, Map<String, String> initParams,
101 public void with(HttpServlet servlet,
105 with(servletKey, initParams, servlet);