List of usage examples for org.apache.wicket.request.mapper AbstractMapper subclass-usage
From source file fiftyfive.wicket.resource.MergedResourceMapper.java
/**
* Maps a single, static URL to a list of resources. When that URL is requested, respond by
* merging all the resources together by delegating to {@link MergedResourceRequestHandler}.
*
* @since 3.0
*/
From source file org.cast.cwm.BinaryFileDataMapper.java
/**
* This maps URLs like '/app/userdata/47' to the contents of the BinaryFileData with ID 47.
*
* @author bgoldowsky
*
*/
From source file org.cast.cwm.ThemeDirectoryRequestMapper.java
/**
* A request mapper for static files in a filesystem directory.
* It will response to any request that starts with a given set of prefixes, for example you
* might set up CSS and JS files to be served from a fixed location as follows:
* <code><pre>
* getRootRequestMapperAsCompound().add(new ThemeDirectoryRequestMapper(themeDir, "js", "css"));
From source file org.cast.cwm.UserResponseDataMapper.java
/** * This maps URLs for data from responses to '/app/userresponse/123' to the contents of the data with ID 123. * */ public class UserResponseDataMapper extends AbstractMapper {
From source file org.cast.isi.mapper.ContentDirectoryMapper.java
/**
* A request mapper for authored content files.
*
* Cache duration for files can be set, will default to {@link IResourceSettings#getDefaultCacheDuration()}.
* Files are checked against the PackageResourceGuard before being delivered.
*