Home
last modified time | relevance | path

Searched defs:servletKey (Results 1 – 3 of 3) sorted by relevance

/external/guice/extensions/servlet/src/com/google/inject/servlet/
DServletsModuleBuilder.java65 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
DServletModule.java316 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()
DServletDefinition.java56 private final Key<? extends HttpServlet> servletKey; field in ServletDefinition
65 public ServletDefinition(String pattern, Key<? extends HttpServlet> servletKey, in ServletDefinition()