Uses of Class
com.atlassian.confluence.content.CustomContentEntityObject

Packages that use CustomContentEntityObject
com.atlassian.confluence.content   
com.atlassian.confluence.content.event   
com.atlassian.confluence.content.persistence   
com.atlassian.confluence.content.persistence.hibernate   
com.atlassian.confluence.mail.archive   
com.atlassian.confluence.mail.archive.content   
 

Uses of CustomContentEntityObject in com.atlassian.confluence.content
 

Methods in com.atlassian.confluence.content that return CustomContentEntityObject
 CustomContentEntityObject DefaultCustomContentManager.getById(long id)
           
 CustomContentEntityObject CustomContentManager.getById(long id)
          Find a single CustomContentEntityObject by its id
 CustomContentEntityObject ContentProperty.getContent()
           
 CustomContentEntityObject DefaultCustomContentManager.newPluginContentEntityObject(String contentModuleKey)
           
 CustomContentEntityObject CustomContentManager.newPluginContentEntityObject(String contentModuleKey)
          Create a new CustomContentEntityObject for the given module.
 

Methods in com.atlassian.confluence.content that return types with arguments of type CustomContentEntityObject
 Collection<CustomContentEntityObject> DefaultCustomContentManager.findAllInSpace(Space space)
           
 Collection<CustomContentEntityObject> CustomContentManager.findAllInSpace(Space space)
          Deprecated. this method is evil. Do not call.
 Iterator<CustomContentEntityObject> DefaultCustomContentManager.findCurrentInSpace(Space space, String pluginContentKey, int offset, int maxResults, CustomContentManager.SortField sortField, CustomContentManager.SortOrder sortOrder)
           
 Iterator<CustomContentEntityObject> CustomContentManager.findCurrentInSpace(Space space, String contentModuleKey, int offset, int maxResults, CustomContentManager.SortField sortField, CustomContentManager.SortOrder sortOrder)
          Get an iterator of all the current, non-deleted content of the given type in the given space.
 

Methods in com.atlassian.confluence.content with parameters of type CustomContentEntityObject
 com.atlassian.fugue.Option<String> DefaultContentAdapter.getAttachmentsUrlPath(CustomContentEntityObject pluginContentEntityObject)
           
 com.atlassian.fugue.Option<String> ContentEntityAdapter.getAttachmentsUrlPath(CustomContentEntityObject pluginContentEntityObject)
          Return the URL path to view the list of attachments on the content
 com.atlassian.fugue.Option<String> DefaultContentAdapter.getAttachmentUrlPath(CustomContentEntityObject pluginContentEntityObject, Attachment attachment)
           
 com.atlassian.fugue.Option<String> ContentEntityAdapter.getAttachmentUrlPath(CustomContentEntityObject pluginContentEntityObject, Attachment attachment)
          Return the URL path to view the a particular attachment of the content
 BodyType DefaultContentAdapter.getDefaultBodyType(CustomContentEntityObject pluginContentEntityObject)
           
 BodyType ContentEntityAdapter.getDefaultBodyType(CustomContentEntityObject pluginContentEntityObject)
          Get the default type for BodyContent objects attached to this content.
 com.atlassian.fugue.Option<String> DefaultContentAdapter.getDisplayTitle(CustomContentEntityObject pluginContentEntityObject)
           
 com.atlassian.fugue.Option<String> ContentEntityAdapter.getDisplayTitle(CustomContentEntityObject pluginContentEntityObject)
          Gets the display-friendly title for the content.
 com.atlassian.fugue.Option<String> DefaultContentAdapter.getExcerpt(CustomContentEntityObject pluginContentEntityObject)
           
 com.atlassian.fugue.Option<String> ContentEntityAdapter.getExcerpt(CustomContentEntityObject pluginContentEntityObject)
          Get a text-only summary of the content that is suitable for use in activity streams, search results and other places where a short placeholder for the content is necessary.
 com.atlassian.fugue.Option<String> DefaultContentAdapter.getNameForComparison(CustomContentEntityObject pluginContentEntityObject)
           
 com.atlassian.fugue.Option<String> ContentEntityAdapter.getNameForComparison(CustomContentEntityObject pluginContentEntityObject)
          Return the sorting-friendly title for the content, if the content is to be sorted in alphabetical order.
 com.atlassian.fugue.Option<String> DefaultContentAdapter.getUrlPath(CustomContentEntityObject pluginContentEntityObject)
           
 com.atlassian.fugue.Option<String> ContentEntityAdapter.getUrlPath(CustomContentEntityObject pluginContentEntityObject)
          Gets the URL string (relative to the Confluence application context) at which this content can be viewed.
 void ContentProperty.setContent(CustomContentEntityObject content)
           
 

Uses of CustomContentEntityObject in com.atlassian.confluence.content.event
 

Methods in com.atlassian.confluence.content.event that return CustomContentEntityObject
 CustomContentEntityObject PluginContentRemovedEvent.getContent()
           
 CustomContentEntityObject PluginContentCreatedEvent.getContent()
           
 

Constructors in com.atlassian.confluence.content.event with parameters of type CustomContentEntityObject
PluginContentCreatedEvent(Object src, CustomContentEntityObject content)
           
PluginContentRemovedEvent(Object src, CustomContentEntityObject content)
           
PluginContentUpdatedEvent(Object src, CustomContentEntityObject currentContent, CustomContentEntityObject oldContent, SaveContext saveContext)
           
 

Uses of CustomContentEntityObject in com.atlassian.confluence.content.persistence
 

Methods in com.atlassian.confluence.content.persistence that return types with arguments of type CustomContentEntityObject
 Iterator<CustomContentEntityObject> CustomContentDao.findAllInSpace(long spaceId)
           
 Iterator<CustomContentEntityObject> CustomContentDao.findAllInSpace(String pluginContentKey, long spaceId)
           
 Iterator<CustomContentEntityObject> CustomContentDao.findAllInSpaceWithAttachments(long spaceId)
           
 Iterator<CustomContentEntityObject> CustomContentDao.findAllInSpaceWithAttachments(String pluginContentKey, long spaceId)
           
 Iterator<CustomContentEntityObject> CustomContentDao.findCurrentInSpace(long spaceId, String pluginModuleKey, int offset, int maxResults, CustomContentManager.SortField sortField, CustomContentManager.SortOrder sortOrder)
           
 

Uses of CustomContentEntityObject in com.atlassian.confluence.content.persistence.hibernate
 

Methods in com.atlassian.confluence.content.persistence.hibernate that return types with arguments of type CustomContentEntityObject
 Iterator<CustomContentEntityObject> PluginContentHibernateDao.findAllInSpace(long spaceId)
           
 Iterator<CustomContentEntityObject> PluginContentHibernateDao.findAllInSpace(String pluginModuleKey, long spaceId)
           
 Iterator<CustomContentEntityObject> PluginContentHibernateDao.findAllInSpaceWithAttachments(long spaceId)
           
 Iterator<CustomContentEntityObject> PluginContentHibernateDao.findAllInSpaceWithAttachments(String pluginModuleKey, long spaceId)
           
 Iterator<CustomContentEntityObject> PluginContentHibernateDao.findCurrentInSpace(long spaceId, String pluginModuleKey, int offset, int maxResults, CustomContentManager.SortField sortField, CustomContentManager.SortOrder sortOrder)
           
 

Uses of CustomContentEntityObject in com.atlassian.confluence.mail.archive
 

Methods in com.atlassian.confluence.mail.archive that return CustomContentEntityObject
 CustomContentEntityObject Mail.getEntity()
           
 

Uses of CustomContentEntityObject in com.atlassian.confluence.mail.archive.content
 

Methods in com.atlassian.confluence.mail.archive.content that return CustomContentEntityObject
 CustomContentEntityObject ContentBackedMail.getEntity()
           
 

Methods in com.atlassian.confluence.mail.archive.content that return types with arguments of type CustomContentEntityObject
static ContentQuery<CustomContentEntityObject> MailQueryFactory.findInSpaceByMessageId(long spaceId, String messageId)
           
static ContentQuery<CustomContentEntityObject> MailQueryFactory.findNextInSpaceById(long spaceId, long contentId)
           
static ContentQuery<CustomContentEntityObject> MailQueryFactory.findPreviousInSpaceById(long spaceId, long contentId)
           
 

Methods in com.atlassian.confluence.mail.archive.content with parameters of type CustomContentEntityObject
 com.atlassian.fugue.Option<String> MailContentEntityAdapter.getAttachmentsUrlPath(CustomContentEntityObject pluginContentEntityObject)
           
 com.atlassian.fugue.Option<String> MailContentEntityAdapter.getAttachmentUrlPath(CustomContentEntityObject pluginContentEntityObject, Attachment attachment)
           
 BodyType MailContentEntityAdapter.getDefaultBodyType(CustomContentEntityObject pluginContentEntityObject)
           
 com.atlassian.fugue.Option<String> MailContentEntityAdapter.getDisplayTitle(CustomContentEntityObject pluginContentEntityObject)
           
 com.atlassian.fugue.Option<String> MailContentEntityAdapter.getExcerpt(CustomContentEntityObject pluginContentEntityObject)
           
 com.atlassian.fugue.Option<String> MailContentEntityAdapter.getNameForComparison(CustomContentEntityObject pluginContentEntityObject)
           
 String MailContentEntityAdapter.getUnquotedTextForSummary(CustomContentEntityObject pluginContentEntityObject)
           
 com.atlassian.fugue.Option<String> MailContentEntityAdapter.getUrlPath(CustomContentEntityObject pluginContentEntityObject)
           
static boolean ContentBackedMail.isMailContentEntity(CustomContentEntityObject contentEntityObject)
           
static ContentBackedMail ContentBackedMail.newInstance(CustomContentEntityObject content)
           
 

Method parameters in com.atlassian.confluence.mail.archive.content with type arguments of type CustomContentEntityObject
 String MailFeedSupport.getRenderedContent(RssRenderItem<? extends CustomContentEntityObject> item, com.atlassian.util.concurrent.Timeout timeout)
           
 String MailFeedSupport.getTitle(RssRenderItem<? extends CustomContentEntityObject> item)
           
 



Copyright © 2003-2012 Atlassian. All Rights Reserved.