X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2Fjava%2Forg%2Fmxchange%2Fjjobs%2Fbeans%2Fuser%2FJobsAdminUserWebRequestController.java;h=fd466e4c5b722262f257f7c4b594ef0f7b89ffd8;hb=fe57297eeb81553d228fe9ee795992216479cdd2;hp=b7f42e40fead9d87b7e767eb6ad04a6aead99c06;hpb=3c7cd5562f315a596a6feae7b985feb2fc8834d0;p=jjobs-war.git diff --git a/src/java/org/mxchange/jjobs/beans/user/JobsAdminUserWebRequestController.java b/src/java/org/mxchange/jjobs/beans/user/JobsAdminUserWebRequestController.java index b7f42e40..fd466e4c 100644 --- a/src/java/org/mxchange/jjobs/beans/user/JobsAdminUserWebRequestController.java +++ b/src/java/org/mxchange/jjobs/beans/user/JobsAdminUserWebRequestController.java @@ -17,8 +17,7 @@ package org.mxchange.jjobs.beans.user; import java.io.Serializable; -import java.util.List; -import org.mxchange.jusercore.exceptions.UserNotFoundException; +import org.mxchange.jusercore.events.registration.UserRegisteredEvent; import org.mxchange.jusercore.model.user.User; /** @@ -29,37 +28,47 @@ import org.mxchange.jusercore.model.user.User; public interface JobsAdminUserWebRequestController extends Serializable { /** - * Tries to lookup user by given id number. If the user is not found or the - * account status is not CONFIRMED proper exceptions are thrown. + * Event observer for new user registrations *

- * @param userId User id - *

- * @return User instance + * @param event User registration event + */ + void afterRegistrationEvent (final UserRegisteredEvent event); + + /** + * Adds user instance to database by preparing a complete user instance and + * sending it to the EJB. The data set in the controller is being verified, + * e.g. if the user name or email address is not used yet. *

- * @throws UserNotFoundException If the user is not found + * @return Redirect outcome */ - User lookupUserById (final Long userId) throws UserNotFoundException; + String addUser (); /** - * All users + * Edits cuirrently loaded user's data in database. *

- * @return A list of all public user profiles + * @return Redirect outcome */ - List allUsers (); + String editUserData (); /** - * Checks whether users are registered + * Locks selected user's account. This method makes sure that a lock reason + * is provided that th user later can read on login attempts. + *

+ * @param user User instance to be locked *

- * @return Whether users are registered + * @return Redirect outcome */ - boolean hasUsers (); + String lockUserAccount (final User user); /** - * Adds user instance to database by preparing a complete user instance and - * sending it to the EJB. The data set in the controller is being verified, - * e.g. if the user name or email address is not used yet. + * Unlocks selected user's account. This method makes sure that the account + * is locked. + *

+ * @param user User instance to be unlocked + *

+ * @return Redirect outcome */ - void addUser (); + String unlockUserAccount (final User user); /** * Getter for user name @@ -103,4 +112,32 @@ public interface JobsAdminUserWebRequestController extends Serializable { */ void setUserPasswordRepeat (final String userPasswordRepeat); + /** + * Getter for flag if user needs to change password + *

+ * @return Flag if user needs to change password + */ + Boolean getUserMustChangePassword (); + + /** + * Setter for flag if user needs to change password + *

+ * @param userMustChangePassword Flag if user needs to change password + */ + void setUserMustChangePassword (final Boolean userMustChangePassword); + + /** + * Getter for user lock reason + *

+ * @return User lock reason + */ + String getUserLockReason (); + + /** + * Setter for user lock reason + *

+ * @param userLockReason User lock reason + */ + void setUserLockReason (final String userLockReason); + }