Package oracle.as.scheduler.request
Class ImportExportResult
java.lang.Object
oracle.as.scheduler.request.ImportExportResult
Encapsulates the result of importing or exporting output files.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Status of an import or export operation. -
Method Summary
Modifier and TypeMethodDescriptiongetError()
Gets the error if the status isImportExportStatus.Error
.Gets the list of filenames that were not imported or exported.Gets the path that caused a problem if the status isImportExportStatus.FileError
.Gets the status of the import or export operation.Gets the list of filenames that were successfully imported or exported.toString()
-
Method Details
-
getStatus
Gets the status of the import or export operation.- Returns:
- Import/export status.
-
getError
Gets the error if the status isImportExportStatus.Error
.- Returns:
- The error, or
null
if status is notImportExportStatus.Error
.
-
getProblemPath
Gets the path that caused a problem if the status isImportExportStatus.FileError
.- Returns:
- The problematic path, or
null
if status is notImportExportStatus.FileError
.
-
getSuccessfulFiles
Gets the list of filenames that were successfully imported or exported.- Returns:
List<String>
of file names.
-
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
-