]> git.mxchange.org Git - jjobs-war.git/blobdiff - src/java/org/mxchange/jjobs/beans/login/JobsUserLoginWebSessionController.java
Continued a bit: (please cherry-pick)
[jjobs-war.git] / src / java / org / mxchange / jjobs / beans / login / JobsUserLoginWebSessionController.java
index 7815f2f4e775fab1c6e2d596071b48bf0b4a342d..5c21a2230ae0ac4223dd57d95f6c32d82a9c78d6 100644 (file)
@@ -69,11 +69,11 @@ public interface JobsUserLoginWebSessionController extends Serializable {
        boolean isUserLoggedIn ();
 
        /**
-        * Is this truly a guest?
+        * Checks whether the user needs to change password
         * <p>
-        * @return Whether the user is truly a guest
+        * @return Whether the user needs to change password
         */
-       boolean isGuest ();
+       boolean ifUserMustChangePassword ();
 
        /**
         * Whether the currently logged-in user is invisible
@@ -97,10 +97,11 @@ public interface JobsUserLoginWebSessionController extends Serializable {
        String getCurrentPassword ();
 
        /**
-        * Checks whether the (previously entered) current password matches with from
-        * the user instance.
+        * Checks whether the (previously entered) current password matches with
+        * from the user instance.
         * <p>
         * @return If current password matches
         */
        boolean ifCurrentPasswordMatches ();
+
 }