FileDocCategorySizeDatePackage
MappingData.javaAPI DocApache Tomcat 6.0.141802Fri Jul 20 04:20:36 BST 2007org.apache.tomcat.util.http.mapper

MappingData

public class MappingData extends Object
Mapping data.
author
Remy Maucherat

Fields Summary
public Object
host
public Object
context
public Object
wrapper
public boolean
jspWildCard
public org.apache.tomcat.util.buf.MessageBytes
contextPath
public org.apache.tomcat.util.buf.MessageBytes
requestPath
public org.apache.tomcat.util.buf.MessageBytes
wrapperPath
public org.apache.tomcat.util.buf.MessageBytes
pathInfo
public org.apache.tomcat.util.buf.MessageBytes
redirectPath
Constructors Summary
Methods Summary
public voidrecycle()


       
        host = null;
        context = null;
        wrapper = null;
        pathInfo.recycle();
        requestPath.recycle();
        wrapperPath.recycle();
        contextPath.recycle();
        redirectPath.recycle();
        jspWildCard = false;