Package com.jms.socialmedia.mybatis
Interface FollowersMapper
-
- All Known Implementing Classes:
SqlSessionFollowersMapper
public interface FollowersMapper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
followUser(int followerUserId, int followingUserId)
Collection<Integer>
getFollowerUserIds(int userId)
Collection<Integer>
getFollowingUserIds(int userId)
Collection<User>
getUsersToFollow(int userId)
int
unfollowUser(int followerUserId, int followingUserId)
-
-
-
Method Detail
-
getFollowerUserIds
Collection<Integer> getFollowerUserIds(int userId)
-
getFollowingUserIds
Collection<Integer> getFollowingUserIds(int userId)
-
followUser
int followUser(int followerUserId, int followingUserId)
-
unfollowUser
int unfollowUser(int followerUserId, int followingUserId)
-
getUsersToFollow
Collection<User> getUsersToFollow(int userId)
-
-