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=fe084f60dea0ec69149c9838620afd81a2868747;hpb=f6c652533c7551483cad8fb3c53cc4044c62dcff;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 fe084f60..fd466e4c 100644 --- a/src/java/org/mxchange/jjobs/beans/user/JobsAdminUserWebRequestController.java +++ b/src/java/org/mxchange/jjobs/beans/user/JobsAdminUserWebRequestController.java @@ -17,10 +17,7 @@ package org.mxchange.jjobs.beans.user; import java.io.Serializable; -import java.util.List; -import org.mxchange.jcontacts.contact.Contact; -import org.mxchange.jusercore.events.user.update.UpdatedUserPersonalDataEvent; -import org.mxchange.jusercore.exceptions.UserNotFoundException; +import org.mxchange.jusercore.events.registration.UserRegisteredEvent; import org.mxchange.jusercore.model.user.User; /** @@ -31,62 +28,47 @@ import org.mxchange.jusercore.model.user.User; public interface JobsAdminUserWebRequestController extends Serializable { /** - * Listens to fired event when user updated personal data + * Event observer for new user registrations *

- * @param event Event being fired + * @param event User registration event */ - void afterUserUpdatedPersonalData (final UpdatedUserPersonalDataEvent event); + void afterRegistrationEvent (final UserRegisteredEvent event); /** - * Checks whether the given contact is a user - *

- * @param contact Contact to check - *

- * @return Whether the contact is a user - */ - boolean isContactFound (final Contact contact); - - /** - * 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. - *

- * @param userId User id - *

- * @return User instance + * 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. *

- * @return Whether users are registered - */ - boolean hasUsers (); - - /** - * 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. + * @param user User instance to be locked *

* @return Redirect outcome */ - String addUser (); + String lockUserAccount (final User user); /** - * Edits cuirrently loaded user's data in database. + * Unlocks selected user's account. This method makes sure that the account + * is locked. + *

+ * @param user User instance to be unlocked *

* @return Redirect outcome */ - String editUserData (); + String unlockUserAccount (final User user); /** * Getter for user name @@ -130,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); + }