Uses of Class
com.atlassian.confluence.search.service.ContentTypeEnum

Packages that use ContentTypeEnum
com.atlassian.confluence.content.render.xhtml.model.resource.identifiers   
com.atlassian.confluence.core   
com.atlassian.confluence.core.persistence.hibernate   
com.atlassian.confluence.importexport.xmlimport.model   
com.atlassian.confluence.it.rpc   
com.atlassian.confluence.mail.notification   
com.atlassian.confluence.mail.notification.persistence   
com.atlassian.confluence.mail.notification.persistence.dao.hibernate   
com.atlassian.confluence.plugins.macros.dashboard   
com.atlassian.confluence.plugins.spacedirectory.rest   
com.atlassian.confluence.rss.actions   
com.atlassian.confluence.search.actions   
com.atlassian.confluence.search.service   
com.atlassian.confluence.search.v2.query   
com.atlassian.confluence.user.history   
 

Uses of ContentTypeEnum in com.atlassian.confluence.content.render.xhtml.model.resource.identifiers
 

Methods in com.atlassian.confluence.content.render.xhtml.model.resource.identifiers that return ContentTypeEnum
 ContentTypeEnum IdAndTypeResourceIdentifier.getType()
           
 

Constructors in com.atlassian.confluence.content.render.xhtml.model.resource.identifiers with parameters of type ContentTypeEnum
IdAndTypeResourceIdentifier(long id, ContentTypeEnum type)
           
 

Uses of ContentTypeEnum in com.atlassian.confluence.core
 

Methods in com.atlassian.confluence.core that return ContentTypeEnum
 ContentTypeEnum ContentEntityObject.getTypeEnum()
           
 

Uses of ContentTypeEnum in com.atlassian.confluence.core.persistence.hibernate
 

Methods in com.atlassian.confluence.core.persistence.hibernate that return ContentTypeEnum
 ContentTypeEnum ContentTypeEnumUserType.nullSafeGet(ResultSet rs, String[] columns, Object owner)
           
 

Uses of ContentTypeEnum in com.atlassian.confluence.importexport.xmlimport.model
 

Methods in com.atlassian.confluence.importexport.xmlimport.model that return ContentTypeEnum
 ContentTypeEnum ContentTypeEnumProperty.getEnumValueByRepresentation()
           
 

Uses of ContentTypeEnum in com.atlassian.confluence.it.rpc
 

Methods in com.atlassian.confluence.it.rpc with parameters of type ContentTypeEnum
 boolean ConfluenceRpc.isWatchingSpaceForType(Space space, ContentTypeEnum contentType, User user)
          Check whether the given user is watching the given content type (e.g.
 void ConfluenceRpc.unwatchSpace(User user, Space space, ContentTypeEnum contentType)
           
 void ConfluenceRpc.watchSpace(User user, Space space, ContentTypeEnum contentType)
           
 

Uses of ContentTypeEnum in com.atlassian.confluence.mail.notification
 

Methods in com.atlassian.confluence.mail.notification that return ContentTypeEnum
 ContentTypeEnum Notification.getType()
           
 

Methods in com.atlassian.confluence.mail.notification with parameters of type ContentTypeEnum
protected  Notification DefaultNotificationManager.addNotification(com.atlassian.user.User user, Space space, AbstractPage page, ContentTypeEnum type)
           
 Notification NotificationManager.addSpaceNotification(com.atlassian.user.User user, Space space, ContentTypeEnum type)
          Add a space notification for a particular content type.
 Notification DefaultNotificationManager.addSpaceNotification(com.atlassian.user.User user, Space space, ContentTypeEnum type)
           
 Notification NotificationManager.getNotificationByUserAndSpaceAndType(com.atlassian.user.User user, Space space, ContentTypeEnum type)
           
 Notification DefaultNotificationManager.getNotificationByUserAndSpaceAndType(com.atlassian.user.User user, Space space, ContentTypeEnum type)
           
 List<Notification> NotificationManager.getNotificationsBySpaceAndType(Space space, ContentTypeEnum type)
           
 List<Notification> DefaultNotificationManager.getNotificationsBySpaceAndType(Space space, ContentTypeEnum type)
           
 void Notification.setType(ContentTypeEnum type)
           
 

Uses of ContentTypeEnum in com.atlassian.confluence.mail.notification.persistence
 

Methods in com.atlassian.confluence.mail.notification.persistence with parameters of type ContentTypeEnum
 Notification NotificationDao.findNotificationByUserAndSpaceAndType(com.atlassian.user.User user, Space space, ContentTypeEnum type)
          Find the user notification linked to the specified space with a type specified - may be null if watching the whole space.
 List<Notification> NotificationDao.findNotificationsBySpaceAndType(Space space, ContentTypeEnum type)
          Find all notifications linked to the specified space for a certain type.
 

Uses of ContentTypeEnum in com.atlassian.confluence.mail.notification.persistence.dao.hibernate
 

Methods in com.atlassian.confluence.mail.notification.persistence.dao.hibernate with parameters of type ContentTypeEnum
 Notification HibernateNotificationDao.findNotificationByUserAndSpaceAndType(com.atlassian.user.User user, Space space, ContentTypeEnum type)
           
 List<Notification> HibernateNotificationDao.findNotificationsBySpaceAndType(Space space, ContentTypeEnum type)
           
 

Uses of ContentTypeEnum in com.atlassian.confluence.plugins.macros.dashboard
 

Methods in com.atlassian.confluence.plugins.macros.dashboard that return types with arguments of type ContentTypeEnum
 EnumSet<ContentTypeEnum> RecentlyUpdatedMacroParams.getTypes()
           
 

Uses of ContentTypeEnum in com.atlassian.confluence.plugins.spacedirectory.rest
 

Methods in com.atlassian.confluence.plugins.spacedirectory.rest that return types with arguments of type ContentTypeEnum
 Set<ContentTypeEnum> SpaceDirectoryScope.getContentTypes()
           
 

Uses of ContentTypeEnum in com.atlassian.confluence.rss.actions
 

Methods in com.atlassian.confluence.rss.actions with parameters of type ContentTypeEnum
 void NetworkFeedAction.setContentType(ContentTypeEnum contentType)
          Set the content type to be returned.
 

Uses of ContentTypeEnum in com.atlassian.confluence.search.actions
 

Methods in com.atlassian.confluence.search.actions that return ContentTypeEnum
 ContentTypeEnum SearchSiteAction.getContentType()
           
 ContentTypeEnum SearchSiteAction.CriteriaParameters.getType()
           
 

Constructors in com.atlassian.confluence.search.actions with parameters of type ContentTypeEnum
SearchSiteAction.CriteriaParameters(String labelKey, String queryString, String spaceKey, ContentTypeEnum type, DateRangeEnum lastModified, String contributor, String contributorUsername)
           
 

Uses of ContentTypeEnum in com.atlassian.confluence.search.service
 

Methods in com.atlassian.confluence.search.service that return ContentTypeEnum
static ContentTypeEnum ContentTypeEnum.get(String representation)
          Deprecated. since 3.0. Use getByRepresentation(java.lang.String) or getByClassName(java.lang.String) instead.
static ContentTypeEnum ContentTypeEnum.getByClassName(String className)
           
static ContentTypeEnum ContentTypeEnum.getByRepresentation(String representation)
           
static ContentTypeEnum ContentTypeEnum.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ContentTypeEnum[] ContentTypeEnum.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.atlassian.confluence.search.service that return types with arguments of type ContentTypeEnum
 Set<ContentTypeEnum> SearchQueryParameters.getContentTypes()
           
 EnumSet<ContentTypeEnum> RecentUpdateQueryParameters.getContentTypes()
           
 

Methods in com.atlassian.confluence.search.service with parameters of type ContentTypeEnum
 void SearchQueryParameters.setContentType(ContentTypeEnum contentType)
           
 

Method parameters in com.atlassian.confluence.search.service with type arguments of type ContentTypeEnum
 void SearchQueryParameters.setContentTypes(Set<ContentTypeEnum> contentTypes)
           
 

Constructor parameters in com.atlassian.confluence.search.service with type arguments of type ContentTypeEnum
RecentUpdateQueryParameters(Set<String> usernames, Set<String> labels, Set<String> spaceKeys, EnumSet<ContentTypeEnum> contentTypes)
           
 

Uses of ContentTypeEnum in com.atlassian.confluence.search.v2.query
 

Methods in com.atlassian.confluence.search.v2.query that return types with arguments of type ContentTypeEnum
 Set<ContentTypeEnum> ContentTypeQuery.getContentTypes()
          Get the content types being searched for, as strings.
 Set<ContentTypeEnum> ContainingContentTypeQuery.getContentTypes()
          Get the content types being searched for, as strings.
 

Methods in com.atlassian.confluence.search.v2.query with parameters of type ContentTypeEnum
static SearchQuery ContainingContentTypeQuery.searchForTypesWithinContainerType(ContentTypeEnum containerType, Set<ContentTypeEnum> contentTypes)
          Helper method for the common "Find me all attachments attached to pages" query - which would be ContainingContentTypeQuery.queryForTypeWithinContainerType(ContentTypeEnum.ATTACHMENT, ContentTypeEnum.PAGE)
 

Method parameters in com.atlassian.confluence.search.v2.query with type arguments of type ContentTypeEnum
static SearchQuery ContainingContentTypeQuery.searchForTypesWithinContainerType(ContentTypeEnum containerType, Set<ContentTypeEnum> contentTypes)
          Helper method for the common "Find me all attachments attached to pages" query - which would be ContainingContentTypeQuery.queryForTypeWithinContainerType(ContentTypeEnum.ATTACHMENT, ContentTypeEnum.PAGE)
 

Constructors in com.atlassian.confluence.search.v2.query with parameters of type ContentTypeEnum
ContainingContentTypeQuery(ContentTypeEnum contentType)
          Search for a particular type of content
ContentTypeQuery(ContentTypeEnum contentType)
          Search for a particular type of content
 

Constructor parameters in com.atlassian.confluence.search.v2.query with type arguments of type ContentTypeEnum
ContainingContentTypeQuery(Collection<ContentTypeEnum> contentTypes)
          Search for content that is one of the provided types
ContentTypeQuery(Collection<ContentTypeEnum> contentTypes)
          Search for content that is one of the provided types
 

Uses of ContentTypeEnum in com.atlassian.confluence.user.history
 

Methods in com.atlassian.confluence.user.history with parameters of type ContentTypeEnum
 List<ContentEntityObject> UserHistoryHelper.getHistoryContent(ContentTypeEnum... requestedTypes)
           
 List<ContentEntityObject> UserHistoryHelper.getHistoryContent(int maxResults, ContentTypeEnum... requestedTypes)
          Returns user history ContentEntityObjects, filtered to only include the requested types.
 



Copyright © 2003-2012 Atlassian. All Rights Reserved.