Package org.ocpsoft.rewrite.servlet.spi
Interface RequestCycleWrapper<IN extends ServletRequest,OUT extends ServletResponse>
- All Superinterfaces:
org.ocpsoft.common.pattern.Specialized<Rewrite>,org.ocpsoft.common.pattern.Weighted
- All Known Implementing Classes:
HttpRequestCycleWrapper
public interface RequestCycleWrapper<IN extends ServletRequest,OUT extends ServletResponse>
extends org.ocpsoft.common.pattern.Weighted, org.ocpsoft.common.pattern.Specialized<Rewrite>
Provides an opportunity for extensions to wrap the
ServletRequest and ServletResponse object on each
request-response cycle.- Author:
- Lincoln Baxter, III
-
Method Summary
Modifier and TypeMethodDescriptionwrapRequest(IN request, OUT response, ServletContext servletContext) Wrap the inboundRequestCycleWrapperobject.wrapResponse(IN request, OUT response, ServletContext servletContext) Wrap the outboundRequestCycleWrapperobject.Methods inherited from interface org.ocpsoft.common.pattern.Specialized
handlesMethods inherited from interface org.ocpsoft.common.pattern.Weighted
priority
-
Method Details
-
wrapRequest
Wrap the inboundRequestCycleWrapperobject. -
wrapResponse
Wrap the outboundRequestCycleWrapperobject.
-