From 2ce8c73d8ef5b8ebf98bf5632dbe5125c9d8dfef Mon Sep 17 00:00:00 2001 From: Maurizio Cucchiara Date: Wed, 17 Apr 2013 11:02:18 +0000 Subject: [PATCH] Default value is 'none' git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@1468833 13f79535-47bb-0310-9956-ffa450edef68 --- core/src/main/java/org/apache/struts2/components/URL.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/org/apache/struts2/components/URL.java b/core/src/main/java/org/apache/struts2/components/URL.java index 9e797f61a..850bcce75 100644 --- a/core/src/main/java/org/apache/struts2/components/URL.java +++ b/core/src/main/java/org/apache/struts2/components/URL.java @@ -68,9 +68,9 @@ import java.io.Writer; *
  • namespace - action's namespace
  • *
  • method (String) - action's method name, defaults to 'execute'
  • *
  • encode (Boolean) - url encode the generated url. Defaults to 'true'.
  • - *
  • includeParams (String) - The includeParams attribute may have the value 'none', 'get' or 'all'. Defaults to 'get'. - * none - include no parameters in the URL - * get - include only GET parameters in the URL (default) + *
  • includeParams (String) - The includeParams attribute may have the value 'none', 'get' or 'all'. Defaults to 'none'. + * none - include no parameters in the URL (default) + * get - include only GET parameters in the URL * all - include both GET and POST parameters in the URL *
  • *
  • includeContext (Boolean) - Specifies whether to include the web app context path. Defaults to 'true'.