com.rapidtransform.admin.service.impl
Class UserServiceImpl
java.lang.Object
com.rapidtransform.admin.service.impl.UserServiceImpl
- All Implemented Interfaces:
- UserService
public class UserServiceImpl
- extends java.lang.Object
- implements UserService
- Author:
- Steve
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
UserServiceImpl
public UserServiceImpl()
setUserDAO
public void setUserDAO(UserDAO userDAO)
setSecurityService
public void setSecurityService(SecurityService service)
setDefaultUserRole
public void setDefaultUserRole(java.lang.String userRole)
setRoleDAO
public void setRoleDAO(RoleDAO roleDAO)
getUser
public User getUser(java.lang.String userId)
- Specified by:
getUser
in interface UserService
getUsers
public java.util.List<User> getUsers()
- Specified by:
getUsers
in interface UserService
saveUser
public void saveUser(User user)
- Specified by:
saveUser
in interface UserService
removeUser
public void removeUser(java.lang.String userId)
- Specified by:
removeUser
in interface UserService
getRoles
public java.util.List<Role> getRoles()
- Specified by:
getRoles
in interface UserService
getRole
public Role getRole(java.lang.String roleId)
- Specified by:
getRole
in interface UserService
saveRole
public void saveRole(Role role)
- Specified by:
saveRole
in interface UserService
getUserRoles
public java.util.Set<UserRoleRelation> getUserRoles(java.lang.String userId)
- Specified by:
getUserRoles
in interface UserService