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
1 changed files with 3 additions and 3 deletions

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.
* If the property is not set, no action will be taken.
*
* @param sessionTimeoutUrl
* @param invalidSessionUrl
*/
public void setInvalidSessionUrl(String sessionTimeoutUrl) {
this.invalidSessionUrl = sessionTimeoutUrl;
public void setInvalidSessionUrl(String invalidSessionUrl) {
this.invalidSessionUrl = invalidSessionUrl;
}
}