public class OfBizFavouritesStore extends Object implements FavouritesStore
Constructor and Description |
---|
OfBizFavouritesStore(OfBizDelegator delegator) |
Modifier and Type | Method and Description |
---|---|
boolean |
addFavourite(ApplicationUser user,
SharedEntity entity)
Create Favourites association between User and entity
|
Collection<Long> |
getFavouriteIds(ApplicationUser user,
SharedEntity.TypeDescriptor<?> entityType)
Get the ids of a user's favourite Entities for a given entity type
|
Collection<Long> |
getFavouriteIds(String userKey,
SharedEntity.TypeDescriptor<?> entityType)
Get the ids of a user's favourite Entities for a given entity type
|
boolean |
isFavourite(ApplicationUser user,
SharedEntity entity)
Checks to see if entity is a favourite of the user passed in.
|
boolean |
removeFavourite(ApplicationUser user,
SharedEntity entity)
Remove Favourites association between User and entity
|
void |
removeFavouritesForEntity(SharedEntity entity)
Remove all favourite associations for a given entity.
|
void |
removeFavouritesForUser(ApplicationUser user,
SharedEntity.TypeDescriptor<?> entityType)
Remove the favourite associations for the given User and the given type
|
void |
updateSequence(ApplicationUser user,
List<? extends SharedEntity> favouriteEntities)
Called to update the sequence of a list of favourite
shared entities |
public OfBizFavouritesStore(OfBizDelegator delegator)
public boolean addFavourite(ApplicationUser user, SharedEntity entity)
FavouritesStore
addFavourite
in interface FavouritesStore
user
- User to associate entity withentity
- the entity to associate withpublic boolean removeFavourite(ApplicationUser user, SharedEntity entity)
FavouritesStore
removeFavourite
in interface FavouritesStore
user
- to disassociate entity withentity
- the entity to disassociate withpublic boolean isFavourite(ApplicationUser user, SharedEntity entity)
FavouritesStore
isFavourite
in interface FavouritesStore
user
- to check entity withentity
- the entity to check withpublic Collection<Long> getFavouriteIds(ApplicationUser user, SharedEntity.TypeDescriptor<?> entityType)
FavouritesStore
getFavouriteIds
in interface FavouritesStore
user
- The user for the associated entitiesentityType
- The type of entities to get. E.g. SearchRequest.ENTITY_TYPEpublic Collection<Long> getFavouriteIds(String userKey, SharedEntity.TypeDescriptor<?> entityType)
FavouritesStore
getFavouriteIds
in interface FavouritesStore
userKey
- The key of the user for the associated entitiesentityType
- The type of entities to get. E.g. SearchRequest.ENTITY_TYPEpublic void removeFavouritesForUser(ApplicationUser user, SharedEntity.TypeDescriptor<?> entityType)
FavouritesStore
removeFavouritesForUser
in interface FavouritesStore
user
- The user with whom to disassociate entities withentityType
- The type of entity to disassociate user with.public void removeFavouritesForEntity(SharedEntity entity)
FavouritesStore
removeFavouritesForEntity
in interface FavouritesStore
entity
- The entity to remove all associations withpublic void updateSequence(ApplicationUser user, List<? extends SharedEntity> favouriteEntities)
FavouritesStore
shared entities
updateSequence
in interface FavouritesStore
user
- the user in playfavouriteEntities
- the list specifying the order of the SharedEntity
sCopyright © 2002-2024 Atlassian. All Rights Reserved.