Package org.apache.catalina.mapper
Class WrapperMappingInfo
- java.lang.Object
-
- org.apache.catalina.mapper.WrapperMappingInfo
-
public class WrapperMappingInfo extends java.lang.ObjectEncapsulates information used to register a Wrapper mapping.
-
-
Constructor Summary
Constructors Constructor Description WrapperMappingInfo(java.lang.String mapping, Wrapper wrapper, boolean jspWildCard, boolean resourceOnly)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetMapping()Returns the URL pattern.WrappergetWrapper()Returns the wrapper for the Servlet.booleanisJspWildCard()Returns whether this is a mapping for JSP files.booleanisResourceOnly()Returns whether this is a resource only mapping.
-
-
-
Constructor Detail
-
WrapperMappingInfo
public WrapperMappingInfo(java.lang.String mapping, Wrapper wrapper, boolean jspWildCard, boolean resourceOnly)
-
-
Method Detail
-
getMapping
public java.lang.String getMapping()
Returns the URL pattern.- Returns:
- the URL pattern
-
getWrapper
public Wrapper getWrapper()
Returns the wrapper for the Servlet.- Returns:
- the wrapper
-
isJspWildCard
public boolean isJspWildCard()
Returns whether this is a mapping for JSP files.- Returns:
trueif this is a JSP wildcard mapping
-
isResourceOnly
public boolean isResourceOnly()
Returns whether this is a resource only mapping.- Returns:
trueif this is a resource only mapping
-
-