SEC-1142: Renamed setter argument to match property.

This commit is contained in:
Luke Taylor 2009-08-07 22:55:14 +00:00
parent ea73fd0130
commit c12e5b4d0b

View File

@ -90,9 +90,9 @@ public class SessionManagementFilter extends SpringSecurityFilter {
* Sets the URL to which the response should be redirected if the user agent request and invalid session Id. * Sets the URL to which the response should be redirected if the user agent request and invalid session Id.
* If the property is not set, no action will be taken. * If the property is not set, no action will be taken.
* *
* @param sessionTimeoutUrl * @param invalidSessionUrl
*/ */
public void setInvalidSessionUrl(String sessionTimeoutUrl) { public void setInvalidSessionUrl(String invalidSessionUrl) {
this.invalidSessionUrl = sessionTimeoutUrl; this.invalidSessionUrl = invalidSessionUrl;
} }
} }