Uses of Class
org.xwiki.like.LikeException
-
Packages that use LikeException Package Description org.xwiki.like -
-
Uses of LikeException in org.xwiki.like
Methods in org.xwiki.like that throw LikeException Modifier and Type Method Description long
LikeManager. countUserLikes(UserReference source)
Retrieve the total number of likes performed by a user.long
LikeManager. getEntityLikes(EntityReference target)
Retrieve like information a specific entity.List<UserReference>
LikeManager. getLikers(EntityReference target, int offset, int limit)
Retrieve the users who liked the given reference.List<EntityReference>
LikeManager. getUserLikes(UserReference source, int offset, int limit)
Retrieve the likes performed by the given user.boolean
LikeManager. isLiked(UserReference source, EntityReference target)
Check if an entity is liked by an user without loading all likers.boolean
LikeManager. removeLike(UserReference source, EntityReference target)
Allow a user to unlike an entity.long
LikeManager. saveLike(UserReference source, EntityReference target)
Create a page like and save it.
-