Class InternalRewriteMap
- java.lang.Object
-
- org.apache.catalina.valves.rewrite.InternalRewriteMap
-
public class InternalRewriteMap extends java.lang.ObjectUtility class providing built-in rewrite map implementations.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classInternalRewriteMap.EscapeRewriteMap that URL-encodes strings.static classInternalRewriteMap.LowerCaseRewriteMap that converts strings to lower case.static classInternalRewriteMap.UnescapeRewriteMap that URL-decodes strings.static classInternalRewriteMap.UpperCaseRewriteMap that converts strings to upper case.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RewriteMaptoMap(java.lang.String name)Get a built-in RewriteMap by name.
-
-
-
Method Detail
-
toMap
public static RewriteMap toMap(java.lang.String name)
Get a built-in RewriteMap by name.- Parameters:
name- the map name (toupper, tolower, escape, unescape)- Returns:
- the RewriteMap implementation, or
nullif not found
-
-