Package jakarta.servlet.descriptor
Interface JspConfigDescriptor
public interface JspConfigDescriptor
This interface provides access to the 
<jsp-config> related configuration of a web application.
 
 The configuration is aggregated from the web.xml and web-fragment.xml descriptor files of
 the web application.
- Since:
 - Servlet 3.0
 
- 
Method Summary
Modifier and TypeMethodDescriptionGets the<jsp-property-group>child elements of the<jsp-config>element represented by thisJspConfigDescriptor.Gets the<taglib>child elements of the<jsp-config>element represented by thisJspConfigDescriptor. 
- 
Method Details
- 
getTaglibs
Collection<TaglibDescriptor> getTaglibs()Gets the<taglib>child elements of the<jsp-config>element represented by thisJspConfigDescriptor.Any changes to the returned
Collectionmust not affect thisJspConfigDescriptor.- Returns:
 - a (possibly empty) 
Collectionof the<taglib>child elements of the<jsp-config>element represented by thisJspConfigDescriptor 
 - 
getJspPropertyGroups
Collection<JspPropertyGroupDescriptor> getJspPropertyGroups()Gets the<jsp-property-group>child elements of the<jsp-config>element represented by thisJspConfigDescriptor.Any changes to the returned
Collectionmust not affect thisJspConfigDescriptor.- Returns:
 - a (possibly empty) 
Collectionof the<jsp-property-group>child elements of the<jsp-config>element represented by thisJspConfigDescriptor 
 
 -