Package com.google.inject.servlet
Interface ServletModule.ServletKeyBindingBuilder
-
- Enclosing class:
- ServletModule
public static interface ServletModule.ServletKeyBindingBuilderSee the EDSL examples atServletModule.configureServlets()- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwith(Key<? extends jakarta.servlet.http.HttpServlet> servletKey)voidwith(Key<? extends jakarta.servlet.http.HttpServlet> servletKey, Map<String,String> initParams)voidwith(jakarta.servlet.http.HttpServlet servlet)voidwith(jakarta.servlet.http.HttpServlet servlet, Map<String,String> initParams)voidwith(Class<? extends jakarta.servlet.http.HttpServlet> servletKey)voidwith(Class<? extends jakarta.servlet.http.HttpServlet> servletKey, Map<String,String> initParams)
-
-
-
Method Detail
-
with
void with(Class<? extends jakarta.servlet.http.HttpServlet> servletKey)
-
with
void with(Key<? extends jakarta.servlet.http.HttpServlet> servletKey)
-
with
void with(jakarta.servlet.http.HttpServlet servlet)
- Since:
- 3.0
-
with
void with(Class<? extends jakarta.servlet.http.HttpServlet> servletKey, Map<String,String> initParams)
-
with
void with(Key<? extends jakarta.servlet.http.HttpServlet> servletKey, Map<String,String> initParams)
-
-