diff --git a/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java b/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java index 1c696cf8d..31c1a5213 100644 --- a/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java +++ b/core/src/main/java/org/apache/struts2/views/xslt/XSLTResult.java @@ -177,6 +177,14 @@ import com.opensymphony.xwork2.util.logging.LoggerFactory; *
  • parse - true by default. If set to false, the location param will * not be parsed for Ognl expressions.
  • * + * + * * * *

    @@ -273,6 +281,34 @@ public class XSLTResult implements Result { this.exposedValue = exposedValue; } + /** + * @deprecated Since 2.1.1 + */ + public String getMatchingPattern() { + return matchingPattern; + } + + /** + * @deprecated Since 2.1.1 + */ + public void setMatchingPattern(String matchingPattern) { + this.matchingPattern = matchingPattern; + } + + /** + * @deprecated Since 2.1.1 + */ + public String getExcludingPattern() { + return excludingPattern; + } + + /** + * @deprecated Since 2.1.1 + */ + public void setExcludingPattern(String excludingPattern) { + this.excludingPattern = excludingPattern; + } + /** * If true, parse the stylesheet location for OGNL expressions. *