Package com.avoka.fc.core.security
Class PasswordChangeUtils
- java.lang.Object
-
- com.avoka.fc.core.security.PasswordChangeUtils
-
public class PasswordChangeUtils extends Object
Provides change password page utility methods.- Since:
- 4.3.3
-
-
Constructor Summary
Constructors Constructor Description PasswordChangeUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
getAttemptCount(HttpSession session)
Return the attempted change count.static void
incrementAttemptCount(HttpSession session)
Increment the number of attempted password attempts.
-
-
-
Method Detail
-
getAttemptCount
public static int getAttemptCount(HttpSession session)
Return the attempted change count.- Parameters:
session
- the HTTP session (required)- Returns:
- the number of attempted password changes
-
incrementAttemptCount
public static void incrementAttemptCount(HttpSession session)
Increment the number of attempted password attempts.- Parameters:
session
- the HTTP session (require)
-
-