public interface ContentBodyConversionService
ContentBody instances to other ContentRepresentations. Converting
a ContentBody to the same ContentRepresentation will perform a validation/sanitisation of the body.
When creating or updating content, the incoming ContentBody will be converted to ContentRepresentation.STORAGE
format. Note that currently, the only officially supported STORAGE conversions are from
ContentRepresentation.STORAGE (checked for validity) and from ContentRepresentation.EDITOR.
| Modifier and Type | Method and Description |
|---|---|
ContentBody |
convert(ContentBody body,
ContentRepresentation representation)
Convert a ContentBody value into another format, performing validation during the conversion.
|
ContentBody |
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> |
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. |
ContentBody convertBody(Content content, ContentRepresentation representation) throws BadRequestException
Content body map into another format, performing
validation during the conversion.
This is a wrapper method for convert(ContentBody, ContentRepresentation) that assumes
a single entry in the Body map to save the calling code having to manually extract it.
content - the content to convert the ContentBody ofrepresentation - the ContentRepresentation to convert toBadRequestException - if any validation errors are found during the conversionContentBody convert(ContentBody body, ContentRepresentation representation) throws BadRequestException
body - the content to convertrepresentation - the ContentRepresentation to convert toBadRequestException - if any validation errors are found during the conversioncom.atlassian.fugue.Option<ContentBody> getBodyToConvert(Content content, ContentRepresentation representation)
Content object for which the body could be converted to a given ContentRepresentation,
returns the ContentBody 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.
content - content to convert the body ofrepresentation - the representation that will be converted toCopyright © 2003-2013 Atlassian. All Rights Reserved.