Browse Source

fixed getOriginatingQueryString javadoc (SPR-7072)

pull/23217/head
Juergen Hoeller 15 years ago
parent
commit
d34d8764b0
  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