Class ContextAssetRequestHandler
- java.lang.Object
- 
- org.apache.tapestry5.internal.services.assets.ContextAssetRequestHandler
 
- 
- All Implemented Interfaces:
- AssetRequestHandler
 
 public class ContextAssetRequestHandler extends Object implements AssetRequestHandler Handles requests for context assets, screening out attempt to access anything under WEB-INF or META-INF.- Since:
- 5.2.0
 
- 
- 
Constructor SummaryConstructors Constructor Description ContextAssetRequestHandler(ResourceStreamer resourceStreamer, Resource rootContextResource)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhandleAssetRequest(Request request, Response response, String extraPath)Given a request targeted (via the handler id) to the specific handler, process the request.
 
- 
- 
- 
Constructor Detail- 
ContextAssetRequestHandlerpublic ContextAssetRequestHandler(ResourceStreamer resourceStreamer, Resource rootContextResource) 
 
- 
 - 
Method Detail- 
handleAssetRequestpublic boolean handleAssetRequest(Request request, Response response, String extraPath) throws IOException Description copied from interface:AssetRequestHandlerGiven a request targeted (via the handler id) to the specific handler, process the request. The handler is responsible for processing the request, sending back either a bytestream (viaResponse.getOutputStream(String)) or an error response (viaResponse.sendError(int, String)). It is the handler's responsibility to allow for client-side caching (possibly sending anHttpServletResponse.SC_NOT_MODIFIEDresponse). The handler should return true if it provided a response. If the handler returns false, this indicates that the extra path did not identify a known asset (virtual or otherwise) and the AssetDispatcher service should send aHttpServletResponse.SC_NOT_FOUNDresponse. Starting in Tapestry 5.4, the handler is informed by theAssetRequestDispatcherwhether or not the content should be compressed (this is determined based on information in the URL).- Specified by:
- handleAssetRequestin interface- AssetRequestHandler
- Parameters:
- request- incoming asset request
- response- used to send a response to client
- extraPath- additional path to identify the specific asset
- Returns:
- true if request was handled (and response sent), false if asset not found
- Throws:
- IOException
 
 
- 
 
-