public interface WikiToStorageConverter
Modifier and Type | Method and Description |
---|---|
<T extends ContentEntityObject> |
convertWikiBodyToStorage(T ceo)
Convert the body of the supplied ContentEntityObject to Confluence Storage Format XHTML (if necessary).
|
String |
convertWikiToStorage(String wikiContent,
ConversionContext context,
List<RuntimeException> migrationExceptions)
Returns the XHTML storage format equivalent of the supplied
wikiContent (wiki markup). |
String convertWikiToStorage(String wikiContent, ConversionContext context, List<RuntimeException> migrationExceptions)
wikiContent
(wiki markup).wikiContent
- to be converted.context
- for the conversion.migrationExceptions
- that will be populated with any exceptions that take place during the migration.
There may be multiple exceptions if there are multiple wiki markup sections.<T extends ContentEntityObject> T convertWikiBodyToStorage(T ceo)
Convert the body of the supplied ContentEntityObject to Confluence Storage Format XHTML (if necessary).
Since for now and the near future Confluence may have both wiki formatted and XHTML formatted ContentEntityObjects in the system (wiki formatted historical versions may be present in an upgraded installation) this method provides a convenient way to ensure you only need to handle ContentEntityObjects with the new XHTML format of body.
Note that the returned ceo is a clone of the passed in version, even if no conversion was necessary.
ceo
- the ContentEntityObject to be converted (if necessary).Copyright © 2003–2020 Atlassian. All rights reserved.