324110 Merge async dispatch parameters

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2229 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2010-09-01 03:38:50 +00:00
parent 9e728c5d52
commit 282d4d13d0
1 changed files with 6 additions and 0 deletions

View File

@ -1842,6 +1842,12 @@ public class Request implements HttpServletRequest
}
/* ------------------------------------------------------------ */
/** Merge in a new query string.
* The query string is merged with the existing parameters and {@link #setParameters(MultiMap)} and {@link #setQueryString(String)} are called with the result.
* The merge is according to the rules of the servlet dispatch forward method.
* @param query The query string to merge into the request.
*/
public void mergeQueryString(String query)
{
// extract parameters from dispatch query