Package org.apache.catalina.mapper
Class MappingData
- java.lang.Object
-
- org.apache.catalina.mapper.MappingData
-
public class MappingData extends java.lang.ObjectMapping data.
-
-
Field Summary
Fields Modifier and Type Field Description ContextcontextThe mapped context.Context[]contextsThe mapped contexts.intcontextSlashCountThe number of slashes in the context path.HosthostThe mapped host.booleanjspWildCardWhether this is a JSP wildcard mapping.MappingMatchmatchTypeThe match type.MessageBytespathInfoThe path info.MessageBytesredirectPathThe redirect path.MessageBytesrequestPathThe request path.WrapperwrapperThe mapped wrapper.MessageByteswrapperPathThe wrapper path.
-
Constructor Summary
Constructors Constructor Description MappingData()Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidrecycle()Recycle this mapping data for reuse.java.lang.StringtoString()
-
-
-
Field Detail
-
host
public Host host
The mapped host.
-
context
public Context context
The mapped context.
-
contextSlashCount
public int contextSlashCount
The number of slashes in the context path.
-
contexts
public Context[] contexts
The mapped contexts.
-
wrapper
public Wrapper wrapper
The mapped wrapper.
-
jspWildCard
public boolean jspWildCard
Whether this is a JSP wildcard mapping.
-
requestPath
public final MessageBytes requestPath
The request path.
-
wrapperPath
public final MessageBytes wrapperPath
The wrapper path.
-
pathInfo
public final MessageBytes pathInfo
The path info.
-
redirectPath
public final MessageBytes redirectPath
The redirect path.
-
matchType
public MappingMatch matchType
The match type.
-
-