Class ImportExportResult

java.lang.Object
oracle.as.scheduler.request.ImportExportResult

public class ImportExportResult extends Object
Encapsulates the result of importing or exporting output files.
  • Method Details

    • getStatus

      Gets the status of the import or export operation.
      Returns:
      Import/export status.
    • getError

      public Throwable getError()
      Gets the error if the status is ImportExportStatus.Error.
      Returns:
      The error, or null if status is not ImportExportStatus.Error.
    • getProblemPath

      public String getProblemPath()
      Gets the path that caused a problem if the status is ImportExportStatus.FileError.
      Returns:
      The problematic path, or null if status is not ImportExportStatus.FileError.
    • getSuccessfulFiles

      public List<String> getSuccessfulFiles()
      Gets the list of filenames that were successfully imported or exported.
      Returns:
      List<String> of file names.
    • getFailedFiles

      public List<String> getFailedFiles()
      Gets the list of filenames that were not imported or exported. The reason could be due to an error, or it could be that one file failed and the commit semantics required to stop the operation.
      Returns:
      List<String> of file names.
    • toString

      public String toString()
      Overrides:
      toString in class Object