Package org.ametys.plugins.blog
Class BlogCacheManager.AllPostCache
- java.lang.Object
-
- org.ametys.plugins.blog.BlogCacheManager.AllPostCache
-
- Enclosing class:
- BlogCacheManager
protected static class BlogCacheManager.AllPostCache extends Object
Cache of all the posts.
-
-
Constructor Summary
Constructors Constructor Description AllPostCache()
Construct a AllPostCache instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addPost(Content content)
Add a post to the cache.void
addPost(BlogCacheManager.Post post)
Add a post to the cache.void
clear()
Clear the cache.BlogCacheManager.Post
getPost(String id)
Test if a post exists, provided its ID.BlogCacheManager.Post
getPostByName(String name)
Test if a post exists, provided its content name.Set<String>
getPostIds()
Get a list of all the posts' IDs.Map<String,BlogCacheManager.Post>
getPosts()
Get the exhaustive list of Posts.boolean
hasPost(String id)
Test if a post exists, provided its ID.boolean
hasPostByName(String name)
Test if a post exists, provided its content name.void
removePost(String id, String name)
Remove a post from the cache.void
removePost(Content content)
Remove a post from the cache.
-
-
-
Constructor Detail
-
AllPostCache
public AllPostCache()
Construct a AllPostCache instance.
-
-
Method Detail
-
getPostIds
public Set<String> getPostIds()
Get a list of all the posts' IDs.- Returns:
- all the posts' IDs as a Set.
-
getPosts
public Map<String,BlogCacheManager.Post> getPosts()
Get the exhaustive list of Posts.- Returns:
- the exhaustive list of Posts.
-
getPost
public BlogCacheManager.Post getPost(String id)
Test if a post exists, provided its ID.- Parameters:
id
- the post content ID.- Returns:
- true if the post exists.
-
hasPost
public boolean hasPost(String id)
Test if a post exists, provided its ID.- Parameters:
id
- the post content ID.- Returns:
- true if the post exists.
-
getPostByName
public BlogCacheManager.Post getPostByName(String name)
Test if a post exists, provided its content name.- Parameters:
name
- the post content name.- Returns:
- true if the post exists.
-
hasPostByName
public boolean hasPostByName(String name)
Test if a post exists, provided its content name.- Parameters:
name
- the post content name.- Returns:
- true if the post exists.
-
addPost
public void addPost(Content content)
Add a post to the cache.- Parameters:
content
- the post content.
-
addPost
public void addPost(BlogCacheManager.Post post)
Add a post to the cache.- Parameters:
post
- The post
-
removePost
public void removePost(Content content)
Remove a post from the cache.- Parameters:
content
- the post content to remove from the cache.
-
removePost
public void removePost(String id, String name)
Remove a post from the cache.- Parameters:
id
- The id of postname
- The name of post
-
clear
public void clear()
Clear the cache.
-
-