public final class WikiToStorageConverterImpl extends Object implements WikiToStorageConverter
Constructor and Description |
---|
WikiToStorageConverterImpl(ExceptionTolerantMigrator wikiToXhtmlMigrator) |
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). |
public WikiToStorageConverterImpl(ExceptionTolerantMigrator wikiToXhtmlMigrator)
public String convertWikiToStorage(String wikiContent, ConversionContext context, List<RuntimeException> migrationExceptions)
WikiToStorageConverter
wikiContent
(wiki markup).convertWikiToStorage
in interface WikiToStorageConverter
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.public <T extends ContentEntityObject> T convertWikiBodyToStorage(T ceo)
WikiToStorageConverter
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.
convertWikiBodyToStorage
in interface WikiToStorageConverter
ceo
- the ContentEntityObject to be converted (if necessary).Copyright © 2003–2021 Atlassian. All rights reserved.