FileDocCategorySizeDatePackage
MappingData.javaAPI DocGlassfish v2 API3171Fri May 04 22:33:16 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 boolean
isDefaultContext
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;
        // START GlassFish 1024
        isDefaultContext = false;
        // END GlassFish 1024