|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object info.magnolia.cms.beans.config.RegexpVirtualURIMapping info.magnolia.cms.beans.config.RotatingVirtualURIMapping
public class RotatingVirtualURIMapping
An extension of RegexpVirtualURIMapping
that allows a rotation between different destination urls. In order
to rotate toURI
must contain the *
that will be replaced by a random number between
start
(default is 1
) and end
(defaults is 3
).
An additional property padding
can specify the left 0 padding for numbers (defaults is 2
).
So for example a destination url like forward:/banner/image_*.jpg
will randomly forward the request to
/banner/image_01.jpg
, /banner/image_02.jpg
or /banner/image_03.jpg
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface info.magnolia.cms.beans.config.VirtualURIMapping |
---|
VirtualURIMapping.MappingResult |
Constructor Summary | |
---|---|
RotatingVirtualURIMapping()
|
Method Summary | |
---|---|
VirtualURIMapping.MappingResult |
mapURI(String uri)
Maps an incoming URI to a new target URI. |
void |
setEnd(int end)
Sets the end. |
void |
setPadding(int padding)
Sets the padding. |
void |
setStart(int start)
Sets the start. |
Methods inherited from class info.magnolia.cms.beans.config.RegexpVirtualURIMapping |
---|
getFromURI, getToURI, mapURI, setFromURI, setToURI, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public RotatingVirtualURIMapping()
Method Detail |
---|
public void setStart(int start)
start
- the start to setpublic void setEnd(int end)
end
- the end to setpublic void setPadding(int padding)
padding
- the padding to setpublic VirtualURIMapping.MappingResult mapURI(String uri)
VirtualURIMapping.MappingResult
describing the new
URI and the level of match. The new URI can be prefixed with "redirect:", "permanent:" or "forward:" to trigger
either a temporary redirect, a permanent redirect or a forward respectively. For redirects the URI can be
absolute or relative within the web application (the context path is added automatically). If the mapping does
not apply to the input URI this method returns null.
mapURI
in interface VirtualURIMapping
mapURI
in class RegexpVirtualURIMapping
uri
- the URI of the current request, decoded and without the context path
VirtualURIMapping.MappingResult
with the target URI and level or null if the mapping doesn't apply
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |