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 void
UserProvider.delete
(NuclosUser user) This method allows to delete a specific user account.static void
UserProvider.expire
(NuclosUser user, Date date) This method allows to define a date on which to expire a specific user account.static UID
UserProvider.grantMandator
(NuclosMandator mandator, NuclosUser user) This method assigns a mandator to a given user.static UID
UserProvider.grantRole
(Class<? extends NuclosRole> role, NuclosUser user) This method assigns a role to a given user.static UID
UserProvider.grantRole
(NuclosRole role, NuclosUser user) This method assigns a role to a given user.static UID
UserProvider.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 UID
UserProvider.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 UID
UserProvider.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 boolean
UserProvider.isMandatorGranted
(NuclosMandator mandator, NuclosUser user) This method checks if a mandator is granted to a given user.static void
UserProvider.resetPassword
(NuclosUser user, String password, boolean sendNotification) This method resets the password for the given Nuclos User.static void
UserProvider.revokeMandator
(NuclosMandator mandator, NuclosUser user) This method revokes a mandator from a given user.static void
UserProvider.revokeRole
(Class<? extends NuclosRole> role, NuclosUser user) This method dispossesses a user of the given role.static void
UserProvider.revokeRole
(NuclosRole role, NuclosUser user) This method dispossesses a user of the given role.static void
UserProvider.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 TypeMethodDescriptionvoid
UserService.delete
(NuclosUser user) This method allows to delete a specific user account.void
UserService.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.boolean
UserService.isMandatorGranted
(NuclosMandator mandator, NuclosUser user) This method checks if a mandator is granted to a given user.void
UserService.resetPassword
(NuclosUser user, String password, boolean sendNotification) This method resets the password for the given Nuclos User.void
UserService.revokeMandator
(NuclosMandator mandator, NuclosUser user) This method revokes a mandator from a given user.void
UserService.revokeRole
(Class<? extends NuclosRole> role, NuclosUser user) This method dispossesses a user of the given role.void
UserService.revokeRole
(NuclosRole role, NuclosUser user) This method dispossesses a user of the given role.void
UserService.update
(NuclosUser user) This method updates the given Nuclos User.