Class ExceptionTolerantMigrator.MigrationResult

java.lang.Object
com.atlassian.confluence.content.render.xhtml.migration.ExceptionTolerantMigrator.MigrationResult
Enclosing interface:
ExceptionTolerantMigrator

public static class ExceptionTolerantMigrator.MigrationResult extends Object
Represents the results of an attempted migration.
Since:
5.3
  • Constructor Details

    • MigrationResult

      public MigrationResult(String content, boolean migrationPerformed, List<RuntimeException> exceptions)
    • MigrationResult

      public MigrationResult(String content, boolean migrationPerformed)
  • Method Details

    • getContent

      public String getContent()
      Returns:
      The migrated content. Note that if the list of exceptions returned by getExceptions() is not empty, then the resulting content may not be complete or correct.
    • getExceptions

      public List<RuntimeException> getExceptions()
      Returns:
      A list of the exceptions raised during the migration process.
    • isMigrationPerformed

      public boolean isMigrationPerformed()
      Returns:
      an indication of whether or not migration needed to be performed on the input.