Uses of Class
com.finconsgroup.itserr.marketplace.usercommunication.dm.entity.User
Packages that use User
Package
Description
-
Uses of User in com.finconsgroup.itserr.marketplace.usercommunication.dm.api
Methods in com.finconsgroup.itserr.marketplace.usercommunication.dm.api that return types with arguments of type UserModifier and TypeMethodDescriptionUserApi.getOnlineUsers()Retrieve all users currently marked online.UserApi.getRecentlyActiveUsers()Retrieve users that are online or have been active within the last hour.org.springframework.http.ResponseEntity<User> UserApi.getUserById(UUID userId) Retrieve a user by their business userId. -
Uses of User in com.finconsgroup.itserr.marketplace.usercommunication.dm.controller
Methods in com.finconsgroup.itserr.marketplace.usercommunication.dm.controller that return types with arguments of type UserModifier and TypeMethodDescriptionUserController.getOnlineUsers()Get all online usersUserController.getRecentlyActiveUsers()Get recently active users (online or active within last hour)org.springframework.http.ResponseEntity<User> UserController.getUserById(UUID userId) Get user by userId -
Uses of User in com.finconsgroup.itserr.marketplace.usercommunication.dm.mapper
Methods in com.finconsgroup.itserr.marketplace.usercommunication.dm.mapper that return UserModifier and TypeMethodDescriptionUserMapper.userProfileDmDtoToEntity(OutputUserProfileDmDto userProfileDmDto) Converts aOutputUserProfileDmDtointo aUser.UserMapperImpl.userProfileDmDtoToEntity(OutputUserProfileDmDto userProfileDmDto) Methods in com.finconsgroup.itserr.marketplace.usercommunication.dm.mapper with parameters of type UserModifier and TypeMethodDescriptiondefault voidUserMapper.afterMapUserDtoToEntity(OutputUserDto outputUserDto, User user) UserMapper.entityToOutputUserDto(User entity) Converts aUserinto aOutputUserDto.UserMapperImpl.entityToOutputUserDto(User entity) -
Uses of User in com.finconsgroup.itserr.marketplace.usercommunication.dm.repository
Methods in com.finconsgroup.itserr.marketplace.usercommunication.dm.repository that return types with arguments of type UserModifier and TypeMethodDescriptionFind a user by their unique user IDUserRepository.findByOnlineTrue()Find all online usersUserRepository.findRecentlyActiveUsers(Instant since) Find recently active users (online or last seen within specified time) -
Uses of User in com.finconsgroup.itserr.marketplace.usercommunication.dm.service
Methods in com.finconsgroup.itserr.marketplace.usercommunication.dm.service that return UserModifier and TypeMethodDescriptionSessionManagementService.onSessionCreated(String sessionId, WebSocketUser user) Callback method to call when a user connects to a web socket session.SessionManagementService.onSessionDestroyed(String sessionId) Callback method to call when a user disconnects from a web socket session. -
Uses of User in com.finconsgroup.itserr.marketplace.usercommunication.dm.service.impl
Methods in com.finconsgroup.itserr.marketplace.usercommunication.dm.service.impl that return UserModifier and TypeMethodDescriptionDefaultSessionManagementService.onSessionCreated(String sessionId, WebSocketUser user) ExternalBrokerSessionManagementService.onSessionCreated(String sessionId, WebSocketUser user) DefaultSessionManagementService.onSessionDestroyed(String sessionId) ExternalBrokerSessionManagementService.onSessionDestroyed(String sessionId) protected final UserAbstractSessionManagementService.updateUserOnlineStatus(WebSocketUser webSocketUser, boolean online)