1
0
mirror of synced 2026-05-22 21:33:16 +00:00

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
@@ -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;
}
}