public interface BlogIntegrationImplementation
| Modifier and Type | Method and Description |
|---|---|
boolean |
deletePost(BlogDetails blogDetails,
java.lang.String postId)
Delete an existing blog post
|
java.lang.String |
getDisplayName()
Gets the display name of the blog integration
|
java.lang.String |
getName()
Gets the name of the blog integration
|
java.util.Map |
getPost(BlogDetails blogDetails,
java.lang.String postId)
Get the details of an existing blog post
|
java.lang.String |
newPost(BlogDetails blogDetails,
java.lang.String title,
java.lang.String body,
boolean publish)
Create a new post on the blog.
|
boolean |
updatePost(BlogDetails blogDetails,
java.lang.String postId,
java.lang.String title,
java.lang.String body,
boolean publish)
Update an exisiting blog post
|
java.lang.String getName()
java.lang.String getDisplayName()
java.lang.String newPost(BlogDetails blogDetails, java.lang.String title, java.lang.String body, boolean publish)
blogDetails - the blog detailstitle - the title of the postbody - the body of the postpublish - indicates whether the post is published or notboolean updatePost(BlogDetails blogDetails, java.lang.String postId, java.lang.String title, java.lang.String body, boolean publish)
blogDetails - postId - title - body - publish - java.util.Map getPost(BlogDetails blogDetails, java.lang.String postId)
blogDetails - postId - boolean deletePost(BlogDetails blogDetails, java.lang.String postId)
blogDetails - postId - Copyright © 2005 - 2010 Alfresco Software, Inc. All Rights Reserved.