This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 0d421d66bb229466c3d10b2679fb9784626a8399 Author: Mark Thomas <ma...@apache.org> AuthorDate: Thu Sep 23 20:09:07 2021 +0100 Servlet API changes required to support errorOnELNotFound --- java/jakarta/servlet/descriptor/JspPropertyGroupDescriptor.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/java/jakarta/servlet/descriptor/JspPropertyGroupDescriptor.java b/java/jakarta/servlet/descriptor/JspPropertyGroupDescriptor.java index a1c5356..afa6e8c 100644 --- a/java/jakarta/servlet/descriptor/JspPropertyGroupDescriptor.java +++ b/java/jakarta/servlet/descriptor/JspPropertyGroupDescriptor.java @@ -40,6 +40,14 @@ public interface JspPropertyGroupDescriptor { public String getElIgnored(); /** + * Will the use of an unknown identifier in EL within a JSP page trigger an + * error for this group? + * + * @return {@code true} if an error will be triggered, otherwise {@code false} + */ + public String getErrorOnELNotFound(); + + /** * Obtain the page encoding for this group. * * @return the page encoding for this group --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org