Class JspConfigDescriptorImpl
- java.lang.Object
-
- org.apache.tomcat.util.descriptor.web.JspConfigDescriptorImpl
-
- All Implemented Interfaces:
JspConfigDescriptor
public class JspConfigDescriptorImpl extends Object implements JspConfigDescriptor
-
-
Constructor Summary
Constructors Constructor Description JspConfigDescriptorImpl(Collection<JspPropertyGroupDescriptor> jspPropertyGroups, Collection<TaglibDescriptor> taglibs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<JspPropertyGroupDescriptor>
getJspPropertyGroups()
Provide the set of JSP property groups obtained from the <jsp-config> elements in the web application's deployment descriptors.Collection<TaglibDescriptor>
getTaglibs()
Provide the set of tag library descriptors obtained from the <jsp-config> elements in the web application's deployment descriptors.
-
-
-
Constructor Detail
-
JspConfigDescriptorImpl
public JspConfigDescriptorImpl(Collection<JspPropertyGroupDescriptor> jspPropertyGroups, Collection<TaglibDescriptor> taglibs)
-
-
Method Detail
-
getJspPropertyGroups
public Collection<JspPropertyGroupDescriptor> getJspPropertyGroups()
Description copied from interface:javax.servlet.descriptor.JspConfigDescriptor
Provide the set of JSP property groups obtained from the <jsp-config> elements in the web application's deployment descriptors.- Specified by:
getJspPropertyGroups
in interfaceJspConfigDescriptor
- Returns:
- the JSP property groups
-
getTaglibs
public Collection<TaglibDescriptor> getTaglibs()
Description copied from interface:javax.servlet.descriptor.JspConfigDescriptor
Provide the set of tag library descriptors obtained from the <jsp-config> elements in the web application's deployment descriptors.- Specified by:
getTaglibs
in interfaceJspConfigDescriptor
- Returns:
- the tag library descriptors
-
-