@ParametersAreNonnullByDefault public interface LikeEntityDao
LikeManager
.
This interface replaces the deprecated LikeDaoModifier and Type | Method and Description |
---|---|
LikeEntity |
addLike(ContentEntityObject contentEntity,
com.atlassian.user.User user)
Add a like on the content entity for the given user.
|
Map<com.atlassian.bonnie.Searchable,Integer> |
countLikes(Collection<? extends com.atlassian.bonnie.Searchable> searchables) |
int |
countLikes(com.atlassian.bonnie.Searchable contentEntity) |
List<LikeEntity> |
getLikeEntities(Collection<? extends ContentEntityObject> contentEntities) |
boolean |
hasLike(ContentEntityObject contentEntity,
com.atlassian.user.User user)
Returns true if the given user likes this content entity.
|
void |
removeAllLikesFor(String username)
Removes all likes (for any user) from the specified content entity.
|
void |
removeAllLikesOn(ContentEntityObject contentEntity)
Removes all likes (for any user) from the specified content entity.
|
void |
removeLike(ContentEntityObject contentEntity,
com.atlassian.user.User user)
Remove like from content entity for the given user.
|
@Nonnull LikeEntity addLike(ContentEntityObject contentEntity, com.atlassian.user.User user)
contentEntity
- the content entity to add a like touser
- User liking the contentvoid removeLike(ContentEntityObject contentEntity, com.atlassian.user.User user)
contentEntity
- content entity to remove like fromuser
- User removing their Likevoid removeAllLikesOn(ContentEntityObject contentEntity)
contentEntity
- content entityvoid removeAllLikesFor(String username)
username
- the name of the user to remove all likes forboolean hasLike(ContentEntityObject contentEntity, com.atlassian.user.User user)
contentEntity
- the content entityuser
- the User the Like is being checked for@Nonnull List<LikeEntity> getLikeEntities(Collection<? extends ContentEntityObject> contentEntities)
int countLikes(com.atlassian.bonnie.Searchable contentEntity)
@Nonnull Map<com.atlassian.bonnie.Searchable,Integer> countLikes(Collection<? extends com.atlassian.bonnie.Searchable> searchables)
Copyright © 2003–2015 Atlassian. All rights reserved.