org.apache.tuscany.host.servlet
Interface ServletRequestInjector
public interface ServletRequestInjector
Interface to a system component that dispatches servlet requests to the Tuscany runtime
Method Summary |
void |
service(javax.servlet.ServletRequest req,
javax.servlet.ServletResponse res)
Dispatch servlet requests to the Tuscany runtime |
service
void service(javax.servlet.ServletRequest req,
javax.servlet.ServletResponse res)
throws javax.servlet.ServletException,
IOException
- Dispatch servlet requests to the Tuscany runtime
- Parameters:
req
- the ServletRequest object that contains the request the client made of the servletres
- the ServletResponse object that contains the response the servlet returns to the client
- Throws:
javax.servlet.ServletException
- if the request cannot be handled
IOException
- if an input or output error occurs while handling the request
-