Class ContentBodyConversionServiceImpl
java.lang.Object
com.atlassian.confluence.api.impl.service.content.ContentBodyConversionServiceImpl
- All Implemented Interfaces:
ContentBodyConversionService
public class ContentBodyConversionServiceImpl
extends Object
implements ContentBodyConversionService
-
Constructor Summary
ConstructorsConstructorDescriptionContentBodyConversionServiceImpl
(ContentEntityManagerInternal contentEntityManager, ContentBodyConversionManager contentBodyConversionManager) -
Method Summary
Modifier and TypeMethodDescriptionconvert
(ContentBody body, ContentRepresentation toFormat) Same as callingContentBodyConversionService.convert(ContentBody, ContentRepresentation, Expansion...)
with an empty expansion.convert
(ContentBody contentBody, ContentRepresentation toFormat, Expansion... expansions) Convert a ContentBody value into another format, performing validation during the conversion.convertBody
(Content content, ContentRepresentation toFormat) Same as callingContentBodyConversionService.convertBody(Content, ContentRepresentation, Expansion...)
with an empty expansion.convertBody
(Content content, ContentRepresentation toFormat, Expansion... expansions) Convert the single ContentBody value in aContent
body map into another format, performing validation during the conversion.selectBodyForRepresentation
(Content content, ContentRepresentation toFormat) Given aContent
object for which the body could be converted to a givenContentRepresentation
, returns theContentBody
that would be used for the conversion.
-
Constructor Details
-
ContentBodyConversionServiceImpl
public ContentBodyConversionServiceImpl(ContentEntityManagerInternal contentEntityManager, ContentBodyConversionManager contentBodyConversionManager)
-
-
Method Details
-
convertBody
public ContentBody convertBody(Content content, ContentRepresentation toFormat) throws ServiceException Description copied from interface:ContentBodyConversionService
Same as callingContentBodyConversionService.convertBody(Content, ContentRepresentation, Expansion...)
with an empty expansion.- Specified by:
convertBody
in interfaceContentBodyConversionService
- Parameters:
content
- the content to convert the ContentBody of, if this specifies a contentId then the persisted content will be used to generated the conversionContext.toFormat
- theContentRepresentation
to convert to- Returns:
- the converted body
- Throws:
BadRequestException
- if any validation errors are found during the conversionNotFoundException
- if content specifies a contentId that does not existServiceException
-
convertBody
public ContentBody convertBody(Content content, ContentRepresentation toFormat, Expansion... expansions) throws ServiceException Description copied from interface:ContentBodyConversionService
Convert the single ContentBody value in aContent
body map into another format, performing validation during the conversion.This is a wrapper method for
ContentBodyConversionService.convert(ContentBody, ContentRepresentation, Expansion...expansions)
that assumes a single entry in the Body map to save the calling code having to manually extract it.- Specified by:
convertBody
in interfaceContentBodyConversionService
- Parameters:
content
- the content to convert the ContentBody of, if this specifies a contentId then the persisted content will be used to generated the conversionContext.toFormat
- theContentRepresentation
to convert toexpansions
- determins the expansion done on the conversion. This expansion must match the expansions available toContentBody
. An example expansion string would be'webresource'
.- Returns:
- the converted body
- Throws:
BadRequestException
- if any validation errors are found during the conversionNotFoundException
- if content specifies a contentId that does not existServiceException
-
convert
public ContentBody convert(ContentBody body, ContentRepresentation toFormat) throws ServiceException Description copied from interface:ContentBodyConversionService
Same as callingContentBodyConversionService.convert(ContentBody, ContentRepresentation, Expansion...)
with an empty expansion.- Specified by:
convert
in interfaceContentBodyConversionService
- Parameters:
body
- the content to converttoFormat
- theContentRepresentation
to convert to- Returns:
- the converted body
- Throws:
BadRequestException
- if any validation errors are found during the conversionNotFoundException
- if the contentBody specifies a contentId that does not existServiceException
-
convert
public ContentBody convert(ContentBody contentBody, ContentRepresentation toFormat, Expansion... expansions) throws ServiceException Description copied from interface:ContentBodyConversionService
Convert a ContentBody value into another format, performing validation during the conversion.- Specified by:
convert
in interfaceContentBodyConversionService
- Parameters:
contentBody
- the content to converttoFormat
- theContentRepresentation
to convert toexpansions
- determins the expansion done on the conversion. This expansion must match the expansions available toContentBody
. An example expansion string would be'webresource'
.- Returns:
- the converted body
- Throws:
BadRequestException
- if any validation errors are found during the conversionNotFoundException
- if the contentBody specifies a contentId that does not existServiceException
-
selectBodyForRepresentation
public Optional<ContentBody> selectBodyForRepresentation(Content content, ContentRepresentation toFormat) Description copied from interface:ContentBodyConversionService
Given aContent
object for which the body could be converted to a givenContentRepresentation
, returns theContentBody
that would be used for the conversion.If the supplied Content contains no ContentBody objects, or if none of those ContentBodies are suitable for conversion into the ContentRepresentation, an Option.none() result will be returned.
- Specified by:
selectBodyForRepresentation
in interfaceContentBodyConversionService
- Parameters:
content
- content to convert the body oftoFormat
- the representation that will be converted to- Returns:
- an Optional with either the ContentBody that will be used in the conversion, or nothing
-