Package org.cxbox.core.util.session.impl
Class UserServiceImpl
- java.lang.Object
-
- org.cxbox.core.util.session.impl.UserServiceImpl
-
- All Implemented Interfaces:
UserService
@Service @Transactional public class UserServiceImpl extends Object implements UserService
-
-
Constructor Summary
Constructors Constructor Description UserServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.cxbox.api.data.ResultPage<UserController.UserDto>getByMention(String mention, org.cxbox.api.data.PageSpecification page)Get user mentioned by name or loginUsergetUserByLogin(String login)Get user by login
-
-
-
Method Detail
-
getByMention
public org.cxbox.api.data.ResultPage<UserController.UserDto> getByMention(String mention, org.cxbox.api.data.PageSpecification page)
Description copied from interface:UserServiceGet user mentioned by name or login- Specified by:
getByMentionin interfaceUserService- Parameters:
mention- searchpage- request parameters- Returns:
- ResultPage
-
getUserByLogin
public User getUserByLogin(String login)
Description copied from interface:UserServiceGet user by login- Specified by:
getUserByLoginin interfaceUserService- Parameters:
login- login- Returns:
- User
-
-