Package org.alfresco.repo.blog
Class BaseBlogIntegrationImplementation
- java.lang.Object
-
- org.alfresco.repo.blog.BaseBlogIntegrationImplementation
-
- All Implemented Interfaces:
BlogIntegrationImplementation
- Direct Known Subclasses:
DefaultBlogIntegrationImplementation
public abstract class BaseBlogIntegrationImplementation extends Object implements BlogIntegrationImplementation
Base blog implementation class. Extend this when writting a blog integration implementation.- Author:
- Roy Wetherall
-
-
Constructor Summary
Constructors Constructor Description BaseBlogIntegrationImplementation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDisplayName()Gets the display name of the blog integrationStringgetName()Gets the name of the blog integrationvoidregister()Registers the blog implementation with the blog integration service.voidsetBlogIntegrationService(BlogIntegrationService blogIntegrationService)Sets the blog integration servicevoidsetDisplayName(String displayName)Sets the display namevoidsetName(String name)Sets the name of the blog integration service-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.alfresco.repo.blog.BlogIntegrationImplementation
deletePost, getPost, newPost, updatePost
-
-
-
-
Method Detail
-
setBlogIntegrationService
public void setBlogIntegrationService(BlogIntegrationService blogIntegrationService)
Sets the blog integration service- Parameters:
blogIntegrationService- the blog integration service
-
register
public void register()
Registers the blog implementation with the blog integration service.
-
setName
public void setName(String name)
Sets the name of the blog integration service- Parameters:
name- the name
-
getName
public String getName()
Description copied from interface:BlogIntegrationImplementationGets the name of the blog integration- Specified by:
getNamein interfaceBlogIntegrationImplementation- Returns:
- String the name of the blog integration
- See Also:
BlogIntegrationImplementation.getName()
-
setDisplayName
public void setDisplayName(String displayName)
Sets the display name- Parameters:
displayName- the display name
-
getDisplayName
public String getDisplayName()
Description copied from interface:BlogIntegrationImplementationGets the display name of the blog integration- Specified by:
getDisplayNamein interfaceBlogIntegrationImplementation- Returns:
- String the display name of the blog integration
- See Also:
BlogIntegrationImplementation.getDisplayName()
-
-