Package org.apache.coyote
Interface Adapter
- All Known Implementing Classes:
- CoyoteAdapter
public interface Adapter
Adapter. This represents the entry point in a coyote-based servlet container.
- Author:
- Remy Maucherat
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionbooleanasyncDispatch(Request req, Response res, SocketEvent status) voidcheckRecycled(Request req, Response res) Assert that request and response have been recycled.Provide the name of the domain to use to register MBeans for components associated with the connector.voidbooleanPrepare the given request/response for processing.voidCall the service method, and notify all listeners
- 
Method Details- 
serviceCall the service method, and notify all listeners- Parameters:
- req- The request object
- res- The response object
- Throws:
- Exception- if an error happens during handling of the request. Common errors are:- IOException if an input/output error occurs and we are processing an included servlet (otherwise it is swallowed and handled by the top level error handler mechanism)
- ServletException if a servlet throws an exception and we are processing an included servlet (otherwise it is swallowed and handled by the top level error handler mechanism)
 
 
- 
preparePrepare the given request/response for processing. This method requires that the request object has been populated with the information available from the HTTP headers.- Parameters:
- req- The request object
- res- The response object
- Returns:
- trueif processing can continue, otherwise- falsein which case an appropriate error will have been set on the response
- Throws:
- Exception- If the processing fails unexpectedly
 
- 
asyncDispatch- Throws:
- Exception
 
- 
log
- 
checkRecycledAssert that request and response have been recycled. If they have not then log a warning and force a recycle. This method is called as a safety check when a processor is being recycled and may be returned to a pool for reuse.- Parameters:
- req- Request
- res- Response
 
- 
getDomainString getDomain()Provide the name of the domain to use to register MBeans for components associated with the connector.- Returns:
- The MBean domain name
 
 
-