Uses of Interface
org.nuclos.api.common.NuclosUser
Packages that use NuclosUser
-
Uses of NuclosUser in org.nuclos.api.provider
Methods in org.nuclos.api.provider with parameters of type NuclosUserModifier and TypeMethodDescriptionstatic voidUserProvider.delete(NuclosUser user) This method allows to delete a specific user account.static voidUserProvider.expire(NuclosUser user, Date date) This method allows to define a date on which to expire a specific user account.static UIDUserProvider.grantMandator(NuclosMandator mandator, NuclosUser user) This method assigns a mandator to a given user.static UIDUserProvider.grantRole(Class<? extends NuclosRole> role, NuclosUser user) This method assigns a role to a given user.static UIDUserProvider.grantRole(NuclosRole role, NuclosUser user) This method assigns a role to a given user.static UIDUserProvider.insert(NuclosUser user) This method creates a Nuclos User and returns the id of the new object.
A password will be generated and a default notification Email with the password will be send.
A new user does not have any roles and therefore does not have any rights in Nuclos.static UIDUserProvider.insert(NuclosUser user, String password) This method creates a Nuclos User and returns the id of the new object.
Sends a default notification Email with the password.
A new user does not have any roles and therefore does not have any rights in Nuclos.static UIDUserProvider.insert(NuclosUser user, String password, boolean sendNotification) This method creates a Nuclos User and returns the id of the new object.
A new user does not have any roles and therefore does not have any rights in Nuclos.static booleanUserProvider.isMandatorGranted(NuclosMandator mandator, NuclosUser user) This method checks if a mandator is granted to a given user.static voidUserProvider.resetPassword(NuclosUser user, String password, boolean sendNotification) This method resets the password for the given Nuclos User.static voidUserProvider.revokeMandator(NuclosMandator mandator, NuclosUser user) This method revokes a mandator from a given user.static voidUserProvider.revokeRole(Class<? extends NuclosRole> role, NuclosUser user) This method dispossesses a user of the given role.static voidUserProvider.revokeRole(NuclosRole role, NuclosUser user) This method dispossesses a user of the given role.static voidUserProvider.update(NuclosUser user) This method updates the given Nuclos User. -
Uses of NuclosUser in org.nuclos.api.service
Methods in org.nuclos.api.service with parameters of type NuclosUserModifier and TypeMethodDescriptionvoidUserService.delete(NuclosUser user) This method allows to delete a specific user account.voidUserService.expire(NuclosUser user, Date date) This method allows to define a date on which to expire a specific user account.UserService.grantMandator(NuclosMandator mandator, NuclosUser user) This method assigns a mandator to a given user.UserService.grantRole(Class<? extends NuclosRole> role, NuclosUser user) This method assigns a role to a given user.UserService.grantRole(NuclosRole role, NuclosUser user) This method assigns a role to a given user.UserService.insert(NuclosUser user) This method creates a Nuclos User and returns the id of the new object.
A password will be generated and a default notification Email with the password will be send.
A new user does not have any roles and therefore does not have any rights in Nuclos.UserService.insert(NuclosUser user, String password) This method creates a Nuclos User and returns the id of the new object.
Sends a default notification Email with the password.
A new user does not have any roles and therefore does not have any rights in Nuclos.UserService.insert(NuclosUser user, String password, boolean sendNotification) This method creates a Nuclos User and returns the id of the new object.
A new user does not have any roles and therefore does not have any rights in Nuclos.booleanUserService.isMandatorGranted(NuclosMandator mandator, NuclosUser user) This method checks if a mandator is granted to a given user.voidUserService.resetPassword(NuclosUser user, String password, boolean sendNotification) This method resets the password for the given Nuclos User.voidUserService.revokeMandator(NuclosMandator mandator, NuclosUser user) This method revokes a mandator from a given user.voidUserService.revokeRole(Class<? extends NuclosRole> role, NuclosUser user) This method dispossesses a user of the given role.voidUserService.revokeRole(NuclosRole role, NuclosUser user) This method dispossesses a user of the given role.voidUserService.update(NuclosUser user) This method updates the given Nuclos User.