Searched defs:servletKey (Results 1 – 3 of 3) sorted by relevance
/external/guice/extensions/servlet/src/com/google/inject/servlet/ |
D | ServletsModuleBuilder.java | 65 public void with(Class<? extends HttpServlet> servletKey) { in with() 69 public void with(Key<? extends HttpServlet> servletKey) { in with() 77 public void with(Class<? extends HttpServlet> servletKey, in with() 82 public void with(Key<? extends HttpServlet> servletKey, in with() 87 private void with(Key<? extends HttpServlet> servletKey, Map<String, String> initParams, in with() 103 Key<HttpServlet> servletKey = Key.get(HttpServlet.class, UniqueAnnotations.create()); in with() local
|
D | ServletModule.java | 316 void with(Class<? extends HttpServlet> servletKey); in with() 317 void with(Key<? extends HttpServlet> servletKey); in with() 320 void with(Class<? extends HttpServlet> servletKey, Map<String, String> initParams); in with() 321 void with(Key<? extends HttpServlet> servletKey, Map<String, String> initParams); in with()
|
D | ServletDefinition.java | 56 private final Key<? extends HttpServlet> servletKey; field in ServletDefinition 65 public ServletDefinition(String pattern, Key<? extends HttpServlet> servletKey, in ServletDefinition()
|