Interface ServletModule.ServletKeyBindingBuilder

Enclosing class:
ServletModule

public static interface ServletModule.ServletKeyBindingBuilder
See the EDSL examples at ServletModule.configureServlets()
Since:
2.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    with(Key<? extends javax.servlet.http.HttpServlet> servletKey)
     
    void
    with(Key<? extends javax.servlet.http.HttpServlet> servletKey, Map<String,String> initParams)
     
    void
    with(Class<? extends javax.servlet.http.HttpServlet> servletKey)
     
    void
    with(Class<? extends javax.servlet.http.HttpServlet> servletKey, Map<String,String> initParams)
     
    void
    with(javax.servlet.http.HttpServlet servlet)
     
    void
    with(javax.servlet.http.HttpServlet servlet, Map<String,String> initParams)
     
  • Method Details

    • with

      void with(Class<? extends javax.servlet.http.HttpServlet> servletKey)
    • with

      void with(Key<? extends javax.servlet.http.HttpServlet> servletKey)
    • with

      void with(javax.servlet.http.HttpServlet servlet)
      Since:
      3.0
    • with

      void with(Class<? extends javax.servlet.http.HttpServlet> servletKey, Map<String,String> initParams)
    • with

      void with(Key<? extends javax.servlet.http.HttpServlet> servletKey, Map<String,String> initParams)
    • with

      void with(javax.servlet.http.HttpServlet servlet, Map<String,String> initParams)
      Since:
      3.0