Uses of Class
com.atlassian.confluence.api.model.content.ContentRepresentation

Packages that use ContentRepresentation
com.atlassian.confluence.api.impl.service.content   
com.atlassian.confluence.api.impl.service.content.factory   
com.atlassian.confluence.api.model.content   
com.atlassian.confluence.api.service.content   
com.atlassian.confluence.api.service.exceptions   
com.atlassian.confluence.core   
com.atlassian.confluence.it.api   
com.atlassian.confluence.it.rpc.delegates   
com.atlassian.confluence.plugins.restapi.resources   
com.atlassian.confluence.rest.client   
 

Uses of ContentRepresentation in com.atlassian.confluence.api.impl.service.content
 

Methods in com.atlassian.confluence.api.impl.service.content with parameters of type ContentRepresentation
 ContentBody ContentBodyConversionServiceImpl.convert(ContentBody contentBody, ContentRepresentation toFormat)
           
 ContentBody ContentBodyConversionServiceImpl.convertBody(Content content, ContentRepresentation toFormat)
           
 com.atlassian.fugue.Option<ContentBody> ContentBodyConversionServiceImpl.getBodyToConvert(Content content, ContentRepresentation toFormat)
           
 

Uses of ContentRepresentation in com.atlassian.confluence.api.impl.service.content.factory
 

Fields in com.atlassian.confluence.api.impl.service.content.factory declared as ContentRepresentation
static ContentRepresentation SpaceFactory.DEFAULT_DESCRIPTION_REPRESENTATION
           
 

Methods in com.atlassian.confluence.api.impl.service.content.factory that return types with arguments of type ContentRepresentation
 Map<ContentRepresentation,ContentBody> ContentBodyFactory.makeContentBodies(BodyContent bodyContent, Expansions expansions, ContentFactory contentFactory)
           
 

Methods in com.atlassian.confluence.api.impl.service.content.factory with parameters of type ContentRepresentation
 ContentBody ContentBodyFactory.build(BodyContent bodyContent, ContentRepresentation representation)
           
 

Uses of ContentRepresentation in com.atlassian.confluence.api.model.content
 

Fields in com.atlassian.confluence.api.model.content declared as ContentRepresentation
static ContentRepresentation ContentRepresentation.ANONYMOUS_EXPORT_VIEW
          HTML representation for viewing, but with absolute urls, instead of relative urls in the markup, and macros are rendered as though it is viewed by an anonymous user.
static ContentRepresentation ContentRepresentation.EDITOR
          Representation suitable for use in the rich text editor
static ContentRepresentation ContentRepresentation.EXPORT_VIEW
          HTML representation for viewing, but with absolute urls, instead of relative urls in the markup.
static ContentRepresentation ContentRepresentation.PLAIN
          Raw database format as plain text with no XHTML or WIKI markup.
static ContentRepresentation ContentRepresentation.RAW
          Raw "database" format.
static ContentRepresentation ContentRepresentation.STORAGE
          Raw database format, for content that stores data in our XML storage format
static ContentRepresentation ContentRepresentation.VIEW
          HTML representation for viewing in a web page
static ContentRepresentation ContentRepresentation.WIKI
          Legacy WIKI representation
 

Fields in com.atlassian.confluence.api.model.content with type parameters of type ContentRepresentation
static Iterable<ContentRepresentation> ContentRepresentation.INPUT_CONVERSION_TO_STORAGE_ORDER
          An ordered enumeration of ContentRepresentations that can be converted to STORAGE format.
 

Methods in com.atlassian.confluence.api.model.content that return ContentRepresentation
 ContentRepresentation FormattedBody.getRepresentation()
           
static ContentRepresentation ContentRepresentation.valueOf(String representation)
           
 

Methods in com.atlassian.confluence.api.model.content that return types with arguments of type ContentRepresentation
 Map<ContentRepresentation,ContentBody> Content.getBody()
           
 Map<ContentRepresentation,FormattedBody> Space.getDescription()
           
 Map<ContentRepresentation,Reference<FormattedBody>> Space.getDescriptionRefs()
          Deprecated. Since 5.5.1 Use Space.getDescription().
 

Methods in com.atlassian.confluence.api.model.content with parameters of type ContentRepresentation
 Content.ContentBuilder Content.ContentBuilder.body(String value, ContentRepresentation format)
           
 Space.SpaceBuilder Space.SpaceBuilder.description(ContentRepresentation representation, FormattedBody formattedBody)
           
 Space.SpaceBuilder Space.SpaceBuilder.description(ContentRepresentation representation, Reference<FormattedBody> formattedBody)
          Deprecated. since 5.6 use Space.SpaceBuilder.description(ContentRepresentation,FormattedBody)
 Space.SpaceBuilder Space.SpaceBuilder.description(ContentRepresentation representation, String value)
           
static ContentBody ContentBody.emptyBody(ContentRepresentation representation, Reference<Content> contentReference)
           
 

Method parameters in com.atlassian.confluence.api.model.content with type arguments of type ContentRepresentation
 Content.ContentBuilder Content.ContentBuilder.body(Map<ContentRepresentation,ContentBody> body)
           
 Space.SpaceBuilder Space.SpaceBuilder.description(Map<ContentRepresentation,FormattedBody> description)
           
 

Constructors in com.atlassian.confluence.api.model.content with parameters of type ContentRepresentation
ContentBody(ContentRepresentation representation, String value)
           
ContentBody(ContentRepresentation representation, String value, Content content)
           
ContentBody(ContentRepresentation representation, String value, ContentId contentId)
           
ContentBody(ContentRepresentation representation, String value, Reference<Content> contentReference)
           
FormattedBody(ContentRepresentation representation, String value)
           
 

Uses of ContentRepresentation in com.atlassian.confluence.api.service.content
 

Methods in com.atlassian.confluence.api.service.content with parameters of type ContentRepresentation
 ContentBody ContentBodyConversionService.convert(ContentBody body, ContentRepresentation representation)
          Convert a ContentBody value into another format, performing validation during the conversion.
 ContentBody ContentBodyConversionService.convertBody(Content content, ContentRepresentation representation)
          Convert the single ContentBody value in a Content body map into another format, performing validation during the conversion.
 com.atlassian.fugue.Option<ContentBody> ContentBodyConversionService.getBodyToConvert(Content content, ContentRepresentation representation)
          Given a Content object for which the body could be converted to a given ContentRepresentation, returns the ContentBody that would be used for the conversion.
 

Uses of ContentRepresentation in com.atlassian.confluence.api.service.exceptions
 

Methods in com.atlassian.confluence.api.service.exceptions that return types with arguments of type ContentRepresentation
 Iterable<ContentRepresentation> InvalidRepresentationException.getPermittedRepresentations()
           
 

Constructors in com.atlassian.confluence.api.service.exceptions with parameters of type ContentRepresentation
InvalidRepresentationException(ContentRepresentation unacceptableRepresentation, ContentRepresentation[] permittedRepresentations)
           
InvalidRepresentationException(ContentRepresentation unacceptableRepresentation, ContentRepresentation[] permittedRepresentations)
           
InvalidRepresentationException(ContentRepresentation representation, Iterable<ContentRepresentation> contentRepresentations)
           
 

Constructor parameters in com.atlassian.confluence.api.service.exceptions with type arguments of type ContentRepresentation
InvalidRepresentationException(ContentRepresentation representation, Iterable<ContentRepresentation> contentRepresentations)
           
 

Uses of ContentRepresentation in com.atlassian.confluence.core
 

Methods in com.atlassian.confluence.core that return ContentRepresentation
 ContentRepresentation BodyType.toContentRepresentation()
           
 

Uses of ContentRepresentation in com.atlassian.confluence.it.api
 

Methods in com.atlassian.confluence.it.api with parameters of type ContentRepresentation
static Content ApiEntityConverter.convertItBlogPostToApiContent(BlogPost blogPost, ContentRepresentation format)
           
static Content ApiEntityConverter.convertItCommentToApiContent(Comment comment, ContentRepresentation format)
           
static Content ApiEntityConverter.convertItPageToApiContent(Page page, ContentRepresentation format)
          Converts an acceptance-test Page object into an API Content instance, where the body of the Content is in the passed ContentRepresentation format.
 

Uses of ContentRepresentation in com.atlassian.confluence.it.rpc.delegates
 

Fields in com.atlassian.confluence.it.rpc.delegates declared as ContentRepresentation
static ContentRepresentation ContentRpc.DEFAULT_REPRESENTATION
           
 

Methods in com.atlassian.confluence.it.rpc.delegates with parameters of type ContentRepresentation
 BlogPost ContentRpc.createBlogPost(BlogPost blogPost, ContentRepresentation format)
           
 Comment ContentRpc.createComment(Comment comment, ContentRepresentation format)
           
 Page ContentRpc.createPage(Page page, ContentRepresentation format)
           
 BlogPost ContentRpc.updateBlogPost(BlogPost blogPost, boolean minorEdit, String versionComment, ContentRepresentation format)
           
 Comment ContentRpc.updateComment(Comment comment, ContentRepresentation format)
           
 Page ContentRpc.updatePage(Page page, boolean minorEdit, String versionComment, ContentRepresentation format)
           
 

Uses of ContentRepresentation in com.atlassian.confluence.plugins.restapi.resources
 

Methods in com.atlassian.confluence.plugins.restapi.resources with parameters of type ContentRepresentation
 ContentBody ContentBodyResource.convert(ContentBody body, ContentRepresentation toRepresentation)
          Converts between content body representations.
 

Uses of ContentRepresentation in com.atlassian.confluence.rest.client
 

Methods in com.atlassian.confluence.rest.client with parameters of type ContentRepresentation
 com.atlassian.util.concurrent.Promise<ContentBody> RemoteContentBodyConversionServiceImpl.convert(ContentBody body, ContentRepresentation representation)
           
 com.atlassian.util.concurrent.Promise<ContentBody> RemoteContentBodyConversionService.convert(ContentBody body, ContentRepresentation representation)
          Convert a ContentBody value into another format, performing validation during the conversion.
 



Copyright © 2003–2015 Atlassian. All rights reserved.