Uses of Class
com.jms.socialmedia.model.User
-
Packages that use User Package Description com.jms.socialmedia.cache Different Caching Implementationscom.jms.socialmedia.cache.codec com.jms.socialmedia.dataservice com.jms.socialmedia.handlers Request Handlerscom.jms.socialmedia.model com.jms.socialmedia.mybatis com.jms.socialmedia.password -
-
Uses of User in com.jms.socialmedia.cache
Methods in com.jms.socialmedia.cache that return User Modifier and Type Method Description User
AbstractCachingService. getUserSessionCacheOrSupplier(String sessionKey, Supplier<User> supplier)
abstract User
AbstractCachingService. getUserSessionFromCache(String sessionKey)
User
AbstractCodecCachingService. getUserSessionFromCache(String sessionKey)
User
CachingServiceWithMetrics. getUserSessionFromCache(String sessionKey)
User
GuavaCachingService. getUserSessionFromCache(String sessionKey)
User
JavaMapCachingService. getUserSessionFromCache(String sessionKey)
Methods in com.jms.socialmedia.cache with parameters of type User Modifier and Type Method Description abstract void
AbstractCachingService. putUserSessionIntoCache(String sessionKey, User user)
void
AbstractCodecCachingService. putUserSessionIntoCache(String sessionKey, User user)
void
CachingServiceWithMetrics. putUserSessionIntoCache(String sessionKey, User user)
void
GuavaCachingService. putUserSessionIntoCache(String sessionKey, User user)
void
JavaMapCachingService. putUserSessionIntoCache(String sessionKey, User user)
Method parameters in com.jms.socialmedia.cache with type arguments of type User Modifier and Type Method Description User
AbstractCachingService. getUserSessionCacheOrSupplier(String sessionKey, Supplier<User> supplier)
-
Uses of User in com.jms.socialmedia.cache.codec
Methods in com.jms.socialmedia.cache.codec that return User Modifier and Type Method Description User
CachingCodec. decodeUser(T encodedUser)
User
GsonCachingCodec. decodeUser(String encodedUser)
Methods in com.jms.socialmedia.cache.codec with parameters of type User Modifier and Type Method Description T
CachingCodec. encodeUser(User user)
String
GsonCachingCodec. encodeUser(User user)
-
Uses of User in com.jms.socialmedia.dataservice
Methods in com.jms.socialmedia.dataservice that return User Modifier and Type Method Description User
CachingDataService. getHashedPasswordByUserId(Integer userId)
User
DataService. getHashedPasswordByUserId(Integer userId)
User
DataServiceWithMetrics. getHashedPasswordByUserId(Integer userId)
User
MockDataService. getHashedPasswordByUserId(Integer userId)
User
MybatisDataService. getHashedPasswordByUserId(Integer userId)
User
CachingDataService. getUserBySessionId(String sessionId)
User
DataService. getUserBySessionId(String sessionId)
User
DataServiceWithMetrics. getUserBySessionId(String sessionId)
User
MockDataService. getUserBySessionId(String sessionId)
User
MybatisDataService. getUserBySessionId(String sessionId)
User
CachingDataService. getUserLoginInfoByString(String username)
User
DataService. getUserLoginInfoByString(String usernameOrEmail)
User
DataServiceWithMetrics. getUserLoginInfoByString(String usernameOrEmail)
User
MockDataService. getUserLoginInfoByString(String username)
User
MybatisDataService. getUserLoginInfoByString(String username)
Methods in com.jms.socialmedia.dataservice that return types with arguments of type User Modifier and Type Method Description Collection<User>
CachingDataService. getUsernamesByIds(Collection<Integer> userIds)
Collection<User>
DataService. getUsernamesByIds(Collection<Integer> userIds)
Collection<User>
DataServiceWithMetrics. getUsernamesByIds(Collection<Integer> userIds)
Collection<User>
MockDataService. getUsernamesByIds(Collection<Integer> userIds)
Collection<User>
MybatisDataService. getUsernamesByIds(Collection<Integer> userIds)
Collection<User>
CachingDataService. getUsersToFollow(int userId)
Collection<User>
DataService. getUsersToFollow(int userId)
Collection<User>
DataServiceWithMetrics. getUsersToFollow(int userId)
Collection<User>
MockDataService. getUsersToFollow(int userId)
Collection<User>
MybatisDataService. getUsersToFollow(int userId)
-
Uses of User in com.jms.socialmedia.handlers
Methods in com.jms.socialmedia.handlers that return types with arguments of type User Modifier and Type Method Description Collection<User>
UserRequestHandler. handleGetUsernamesAndIds(spark.Request request, spark.Response response)
Collection<User>
FollowRequestHandler. handleGetUsersToFollow(spark.Request request, spark.Response response)
-
Uses of User in com.jms.socialmedia.model
Subclasses of User in com.jms.socialmedia.model Modifier and Type Class Description class
NewUser
-
Uses of User in com.jms.socialmedia.mybatis
Methods in com.jms.socialmedia.mybatis that return User Modifier and Type Method Description User
SqlSessionUsersMapper. getHashedPasswordByUserId(Integer userId)
User
UsersMapper. getHashedPasswordByUserId(Integer userId)
User
SqlSessionUsersMapper. getUserBySessionKey(String sessionKey)
User
UsersMapper. getUserBySessionKey(String sessionKey)
User
SqlSessionUsersMapper. getUserLoginInfoByString(String username)
User
UsersMapper. getUserLoginInfoByString(String usernameOrEmail)
Methods in com.jms.socialmedia.mybatis that return types with arguments of type User Modifier and Type Method Description Collection<User>
SqlSessionUsersMapper. getUsernamesByIds(Collection<Integer> userIds)
Collection<User>
UsersMapper. getUsernamesByIds(Collection<Integer> userIds)
Collection<User>
FollowersMapper. getUsersToFollow(int userId)
Collection<User>
SqlSessionFollowersMapper. getUsersToFollow(int userId)
-
Uses of User in com.jms.socialmedia.password
Methods in com.jms.socialmedia.password with parameters of type User Modifier and Type Method Description default boolean
PasswordService. checkPassword(ChangePassword changePassword, User user)
default boolean
PasswordService. checkPassword(LoginRequest loginRequest, User user)
-