public class DefaultFollowManager extends Object implements FollowManagerInternal
Modifier and Type | Class and Description |
---|---|
static class |
DefaultFollowManager.UserCanUseConfluencePredicate |
Constructor and Description |
---|
DefaultFollowManager(ConnectionDao connectionDao,
SpacePermissionManager spacePermissionManager,
com.atlassian.event.api.EventPublisher eventPublisher,
PaginationServiceInternal paginationService) |
Modifier and Type | Method and Description |
---|---|
void |
followUser(ConfluenceUser follower,
ConfluenceUser followee)
Sets the follower to follow the specified user.
|
void |
followUser(com.atlassian.user.User follower,
com.atlassian.user.User followee)
Deprecated.
since 5.2. Use
followUser(ConfluenceUser, ConfluenceUser) instead. |
<T> Paginated<T> |
getFollowers(ConfluenceUser user,
PaginationQuery<ConfluenceUser,T> query)
Constructs a new Paginated response containing the followers of specified user, limited and converted by the
given PaginationQuery.
|
List<String> |
getFollowers(com.atlassian.user.User user)
Deprecated.
since 5.6. Use the new paged alternatives in FollowManagerInternal, or consider using the new NetworkService.
|
Set<ConfluenceUser> |
getFollowing(ConfluenceUser user)
Deprecated.
since 5.6. Use the new paged alternatives in FollowManagerInternal, or consider using the new NetworkService.
|
<T> Paginated<T> |
getFollowing(ConfluenceUser user,
PaginationQuery<ConfluenceUser,T> query)
Returns a list of users that the specified user is following, limited and converted by the given PaginationQuery.
|
List<String> |
getFollowing(com.atlassian.user.User user)
Deprecated.
since 5.2. Use the new paged alternatives in FollowManagerInternal, or consider using the new NetworkService.
|
boolean |
isUserFollowing(com.atlassian.user.User follower,
com.atlassian.user.User followee)
True if the follower is following the followee
|
void |
removeAllConnectionsFor(com.atlassian.user.User user)
Removes all connections for this user (as a follower and as a followee).
|
void |
setUserAccessor(UserAccessor userAccessor) |
void |
unfollowUser(com.atlassian.user.User follower,
com.atlassian.user.User followee)
Unsets the follower from following the specified user.
|
public DefaultFollowManager(ConnectionDao connectionDao, SpacePermissionManager spacePermissionManager, com.atlassian.event.api.EventPublisher eventPublisher, PaginationServiceInternal paginationService)
@Deprecated public List<String> getFollowers(com.atlassian.user.User user)
FollowManager
getFollowers
in interface FollowManager
user
- the user to check for followerscom.atlassian.confluence.internal.follow.FollowManagerInternal#getFollowers(com.atlassian.confluence.user.ConfluenceUser, com.atlassian.confluence.api.impl.pagination.PaginationQuery)}
,
com.atlassian.confluence.api.service.network.NetworkService}
@Deprecated public Set<ConfluenceUser> getFollowing(ConfluenceUser user)
FollowManager
getFollowing
in interface FollowManager
user
- the usernamecom.atlassian.confluence.internal.follow.FollowManagerInternal#getFollowing(com.atlassian.confluence.user.ConfluenceUser, com.atlassian.confluence.api.impl.pagination.PaginationQuery)}
,
com.atlassian.confluence.api.service.network.NetworkService}
@Deprecated public List<String> getFollowing(com.atlassian.user.User user)
FollowManager
getFollowing
in interface FollowManager
user
- the usernamecom.atlassian.confluence.internal.follow.FollowManagerInternal#getFollowing(com.atlassian.confluence.user.ConfluenceUser, com.atlassian.confluence.api.impl.pagination.PaginationQuery)}
,
com.atlassian.confluence.api.service.network.NetworkService}
public boolean isUserFollowing(com.atlassian.user.User follower, com.atlassian.user.User followee)
FollowManager
isUserFollowing
in interface FollowManager
follower
- the proposed followerfollowee
- the proposed followeepublic void followUser(ConfluenceUser follower, ConfluenceUser followee)
FollowManager
followUser
in interface FollowManager
follower
- the followerfollowee
- the new followee@Deprecated public void followUser(com.atlassian.user.User follower, com.atlassian.user.User followee)
followUser(ConfluenceUser, ConfluenceUser)
instead.followUser
in interface FollowManager
public void unfollowUser(com.atlassian.user.User follower, com.atlassian.user.User followee)
FollowManager
unfollowUser
in interface FollowManager
follower
- the followerfollowee
- the new followeepublic void removeAllConnectionsFor(com.atlassian.user.User user)
FollowManager
removeAllConnectionsFor
in interface FollowManager
user
- the userpublic <T> Paginated<T> getFollowers(ConfluenceUser user, PaginationQuery<ConfluenceUser,T> query)
FollowManagerInternal
NOTE: this method will implicitly add a Predicate filtering results to ConfluenceUsers that are permitted to use Confluence.
getFollowers
in interface FollowManagerInternal
user
- the user to check for followersquery
- a constructed PaginationQuery containing optional predicates and model conversion strategy.public <T> Paginated<T> getFollowing(ConfluenceUser user, PaginationQuery<ConfluenceUser,T> query)
FollowManagerInternal
getFollowing
in interface FollowManagerInternal
user
- the user to check for followeesquery
- a constructed PaginationQuery containing optional predicates and model conversion strategy.public void setUserAccessor(UserAccessor userAccessor)
Copyright © 2003–2018 Atlassian. All rights reserved.