mirror of
https://github.com/apache/struts.git
synced 2026-08-11 01:27:14 +00:00
WW-1854 XSLTResult excludingPattern Property is Missing
This is a backport of the fix made on the trunk for 2.1. git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_0_X@557637 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -100,7 +100,7 @@ import com.opensymphony.xwork2.util.ValueStack;
|
||||
* </result></pre>
|
||||
*
|
||||
* <p>
|
||||
* Without it there would be an endless x/y/x/y/x/y/... elements.
|
||||
* Without it there would be endless x/y/x/y/x/y/... elements.
|
||||
* </p>
|
||||
*
|
||||
* <p>
|
||||
@@ -231,7 +231,7 @@ public class XSLTResult implements Result {
|
||||
private String matchingPattern;
|
||||
|
||||
/** Indicates the property name patterns which should be excluded from the xml. */
|
||||
private String exludingPattern;
|
||||
private String excludingPattern;
|
||||
|
||||
/** Indicates the ognl expression respresenting the bean which is to be exposed as xml. */
|
||||
private String exposedValue;
|
||||
@@ -285,12 +285,12 @@ public class XSLTResult implements Result {
|
||||
this.matchingPattern = matchingPattern;
|
||||
}
|
||||
|
||||
public String getExludingPattern() {
|
||||
return exludingPattern;
|
||||
public String getExcludingPattern() {
|
||||
return excludingPattern;
|
||||
}
|
||||
|
||||
public void setExludingPattern(String exludingPattern) {
|
||||
this.exludingPattern = exludingPattern;
|
||||
public void setExcludingPattern(String excludingPattern) {
|
||||
this.excludingPattern = excludingPattern;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user