public interface IUserDao
Modifier and Type | Method and Description |
---|---|
void |
add(UserConfig userConfig,
ITransaction transaction)
Add the user.
|
void |
addAlternativeLogin(String userId,
String newLogin,
ITransaction transaction)
Adds an alternative login to a user.
|
void |
delete(String userId,
ITransaction transaction)
Delete the user.
|
void |
deleteAlternativeLogin(String loginToDelete,
ITransaction transaction)
Deletes an alternative login.
|
List<UserConfig> |
findUsers(String query,
boolean includeFrameworkUsers,
int maxResults)
Find users by user login or user name, given a search query.
|
UserConfig |
get(String userId,
ITransaction transaction)
get the user.
|
Collection<String> |
getAllUserIds(ITransaction transaction)
Returns all user ids.
|
Collection<String> |
getAlternativeLogins(String userId,
ITransaction transaction)
Returns the alternative logins of an user.
|
Collection<String> |
getByChannelId(String channelId,
ITransaction transaction)
Return the local users IDs of the specified channel
|
Collection<String> |
getByOrigin(String origin,
ITransaction transaction)
Return the user ids, searching by the user's origin.
|
String |
getUserIdByLogin(String login,
ITransaction transaction)
Get the id of the user.
|
Collection<UserConfig> |
getUsersByLogins(Set<String> logins)
Get users with the given logins.
|
void |
setPassword(String userId,
String password,
ITransaction transaction)
Sets a new password for the user
|
void |
update(UserConfig userConfig,
ITransaction transaction)
Update the user.
|
void |
updateLoginHistory(String userId,
boolean loginSuccess)
Updates persistence information about a user login history.
|
void add(UserConfig userConfig, ITransaction transaction) throws DaoException, PortalException
userConfig
- transaction
- DaoException
PortalException
UserConfig get(String userId, ITransaction transaction) throws DaoException, PortalException
userId
- transaction
- DaoException
PortalException
String getUserIdByLogin(String login, ITransaction transaction) throws DaoException, PortalException
login
- transaction
- DaoException
PortalException
void update(UserConfig userConfig, ITransaction transaction) throws DaoException, PortalException
userConfig
- transaction
- DaoException
PortalException
void setPassword(String userId, String password, ITransaction transaction) throws DaoException, PortalException
userId
- password
- transaction
- DaoException
PortalException
void updateLoginHistory(String userId, boolean loginSuccess) throws PortalException
Note: This method uses its own transaction.
userId
- the user identifier.loginSuccess
- true
if the login attempt was successful, false
otherwise.PortalException
void delete(String userId, ITransaction transaction) throws DaoException, PortalException
userId
- transaction
- DaoException
PortalException
Collection<String> getByChannelId(String channelId, ITransaction transaction) throws DaoException, PortalException
channelId
- transaction
- DaoException
PortalException
void addAlternativeLogin(String userId, String newLogin, ITransaction transaction) throws PortalException
userId
- the user id.newLogin
- the alternative login to be added.transaction
- the transaction for persistence access.PortalException
Collection<String> getAlternativeLogins(String userId, ITransaction transaction) throws PortalException
userId
- the user id.transaction
- the transaction for persistence access.PortalException
void deleteAlternativeLogin(String loginToDelete, ITransaction transaction) throws PortalException
loginToDelete
- the alternative login to be deleted.transaction
- the transaction for persistence access.PortalException
Collection<String> getByOrigin(String origin, ITransaction transaction) throws DaoException, PortalException
origin
- the origin.transaction
- the transaction for persistence access.DaoException
PortalException
Collection<String> getAllUserIds(ITransaction transaction) throws PortalException
transaction
- the transaction for persistence access.PortalException
List<UserConfig> findUsers(String query, boolean includeFrameworkUsers, int maxResults) throws PortalException
query
- query used to search usersincludeFrameworkUsers
- indicates if framework users must also be returnedmaxResults
- amount of users to returnPortalException
Collection<UserConfig> getUsersByLogins(Set<String> logins) throws PortalException
logins
- logins for getting usersPortalException
LumisXP 12.3.0.200408 - Copyright © 2006–2020 Lumis EIP Tecnologia da Informação LTDA. All Rights Reserved.