Browse Source

fixed getOriginatingQueryString javadoc (SPR-7072)

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@3233 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Juergen Hoeller 16 years ago
parent
commit
fbdc396a94
  1. 8
      org.springframework.web/src/main/java/org/springframework/web/util/UrlPathHelper.java

8
org.springframework.web/src/main/java/org/springframework/web/util/UrlPathHelper.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2002-2008 the original author or authors.
* Copyright 2002-2010 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -234,7 +234,7 @@ public class UrlPathHelper { @@ -234,7 +234,7 @@ public class UrlPathHelper {
/**
* Return the request URI for root of the given request. If this is a forwarded request,
* Return the request URI for the given request. If this is a forwarded request,
* correctly resolves to the request URI of the original request.
* <p>Relies on the Servlet 2.4 'forward' attributes. These attributes may be set by
* other components when running in a Servlet 2.3 environment.
@ -266,8 +266,8 @@ public class UrlPathHelper { @@ -266,8 +266,8 @@ public class UrlPathHelper {
}
/**
* Return the request URI for root of the given request. If this is a forwarded request,
* correctly resolves to the request URI of the original request.
* Return the query string part of the given request's URL. If this is a forwarded request,
* correctly resolves to the query string of the original request.
* <p>Relies on the Servlet 2.4 'forward' attributes. These attributes may be set by
* other components when running in a Servlet 2.3 environment.
* @param request current HTTP request

Loading…
Cancel
Save