}
public String getUrlPattern() { return this.urlPattern; }
+ private String defaultContentType = null;
+ public void setDefaultContentType(String defaultContentType) {
+ this.defaultContentType = defaultContentType;
+ }
+ public String getDefaultContentType() { return this.defaultContentType; }
+
+ private Integer buffer = null;
+ public void setBuffer(String buffer) {
+ this.buffer = Integer.valueOf(buffer);
+ }
+ public Integer getBuffer() { return this.buffer; }
+
+ private Boolean errorOnUndeclaredNamespace = null;
+ public void setErrorOnUndeclaredNamespace(
+ String errorOnUndeclaredNamespace) {
+ this.errorOnUndeclaredNamespace =
+ Boolean.valueOf(errorOnUndeclaredNamespace);
+ }
+ public Boolean getErrorOnUndeclaredNamespace() {
+ return this.errorOnUndeclaredNamespace;
+ }
+
}
"setTrimWhitespace", 0);
digester.addCallMethod(fullPrefix + "/jsp-config/jsp-property-group/url-pattern",
"setUrlPattern", 0);
+ digester.addCallMethod(fullPrefix + "/jsp-config/jsp-property-group/default-content-type",
+ "setDefaultContentType", 0);
+ digester.addCallMethod(fullPrefix + "/jsp-config/jsp-property-group/buffer",
+ "setBuffer", 0);
+ digester.addCallMethod(fullPrefix + "/jsp-config/jsp-property-group/error-on-undeclared-namespace",
+ "setErrorOnUndeclaredNamespace", 0);
digester.addRule(fullPrefix + "/login-config",
loginConfig);