Class StaticResourceVersion
- java.lang.Object
-
- org.apache.wicket.request.resource.caching.version.StaticResourceVersion
-
- All Implemented Interfaces:
IResourceVersion
public class StaticResourceVersion extends Object implements IResourceVersion
provides a static version string for all package resources- Since:
- 1.5
- Author:
- Peter Ertl
-
-
Constructor Summary
Constructors Constructor Description StaticResourceVersion(String version)
create static version provider
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getVersion(IStaticCacheableResource resource)
get unique string identifying the version of the resourcePattern
getVersionPattern()
a pattern that matches returned versions
-
-
-
Constructor Detail
-
StaticResourceVersion
public StaticResourceVersion(String version)
create static version provider- Parameters:
version
- static version string to deliver for all queries resources
-
-
Method Detail
-
getVersion
public String getVersion(IStaticCacheableResource resource)
Description copied from interface:IResourceVersion
get unique string identifying the version of the resource- Specified by:
getVersion
in interfaceIResourceVersion
- Parameters:
resource
- cacheable resource- Returns:
- unique version string or
null
if version string could not be calculated
-
getVersionPattern
public Pattern getVersionPattern()
Description copied from interface:IResourceVersion
a pattern that matches returned versions- Specified by:
getVersionPattern
in interfaceIResourceVersion
- Returns:
- a pattern or
null
if no pattern is available
-
-