final OpenEJBWebXml webXml = new OpenEJBWebXml(prefix);
if (DEFERRED_SYNTAX != null) {
for (final String s : DEFERRED_SYNTAX.split(",")) {
if (!s.isEmpty()) {
final JspPropertyGroup propertyGroup = new JspPropertyGroup();
propertyGroup.addUrlPattern(s);
propertyGroup.setDeferredSyntax("true");
webXml.addJspPropertyGroup(propertyGroup);
}
}
}