com.google.inject.servlet.ServletModuleTargetVisitor<T, V> |
A visitor for the servlet extension.
If your BindingTargetVisitor
implements this interface, bindings created by using
ServletModule
will be visited through this interface.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Visits a filter binding created by
filter(String, String...) where
through(Class extends Filter>) is called with a Filter. | |||||||||||
Visits a servlet binding created by
serve(String, String...) where
with(Class extends HttpServlet>) , is called with an HttpServlet. | |||||||||||
Visits a filter binding created by
filter(String, String...) , where
through(Class extends Filter>) is called with a Class or Key. | |||||||||||
Visits a servlet binding created by
serve(String, String...) where
with(Class extends HttpServlet>) , is called with a Class or Key. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
com.google.inject.spi.BindingTargetVisitor
|
Visits a filter binding created by filter(String, String...)
where
through(Class extends Filter>)
is called with a Filter.
If multiple patterns were specified, this will be called multiple times.
Visits a servlet binding created by serve(String, String...)
where
with(Class extends HttpServlet>)
, is called with an HttpServlet.
If multiple patterns were specified, this will be called multiple times.
Visits a filter binding created by filter(String, String...)
, where
through(Class extends Filter>)
is called with a Class or Key.
If multiple patterns were specified, this will be called multiple times.
Visits a servlet binding created by serve(String, String...)
where
with(Class extends HttpServlet>)
, is called with a Class or Key.
If multiple patterns were specified, this will be called multiple times.