Package org.ametys.core.ui.dispatcher
Interface DispatchRequestProcess
-
- All Known Implementing Classes:
CacheDispatchRequestProcess
,JCRSessionDispatchRequestProcess
public interface DispatchRequestProcess
This is a process before or after a request in the dispatch generator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
postProcess(Request request)
Process the requestvoid
preProcess(Request request)
Pre process the request, before it is handled by the dispatch generator
-
-
-
Method Detail
-
preProcess
void preProcess(Request request)
Pre process the request, before it is handled by the dispatch generator- Parameters:
request
- The request to process
-
postProcess
void postProcess(Request request)
Process the request- Parameters:
request
- The request to process
-
-