Class ModuleDispatcher
- java.lang.Object
-
- org.apache.tapestry5.internal.services.javascript.ModuleDispatcher
-
- All Implemented Interfaces:
Dispatcher
public class ModuleDispatcher extends java.lang.Object implements Dispatcher
Handler contributed toAssetDispatcher
with key "modules". It interprets the extra path as a module name, and searches for the corresponding JavaScript module. Unlike normal assets, modules do not include any kind of checksum in the URL, and do not set a far-future expires header.- See Also:
ModuleManager
-
-
Constructor Summary
Constructors Constructor Description ModuleDispatcher(ModuleManager moduleManager, ResourceStreamer streamer, OperationTracker tracker, PathConstructor pathConstructor, JavaScriptStackSource javaScriptStackSource, JavaScriptStackPathConstructor javaScriptStackPathConstructor, LocalizationSetter localizationSetter, java.lang.String prefix, java.lang.String assetPrefix, boolean compress)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
dispatch(Request request, Response response)
Analyzes the incoming request and performs an appropriate operation for each.
-
-
-
Constructor Detail
-
ModuleDispatcher
public ModuleDispatcher(ModuleManager moduleManager, ResourceStreamer streamer, OperationTracker tracker, PathConstructor pathConstructor, JavaScriptStackSource javaScriptStackSource, JavaScriptStackPathConstructor javaScriptStackPathConstructor, LocalizationSetter localizationSetter, java.lang.String prefix, @Symbol("tapestry.asset-path-prefix") java.lang.String assetPrefix, boolean compress)
-
-
Method Detail
-
dispatch
public boolean dispatch(Request request, Response response) throws java.io.IOException
Description copied from interface:Dispatcher
Analyzes the incoming request and performs an appropriate operation for each.- Specified by:
dispatch
in interfaceDispatcher
- Returns:
- true if a response was delivered, false if the dispatcher did not handle the request (and a search for a handler should continue)
- Throws:
java.io.IOException
-
-