com.cgiams.esl.fp
Interface FlowExportManager
- All Known Implementing Classes:
- CDXExportManager, FileExportManager
- public interface FlowExportManager
This interface defines the specification that must be written to
in order provide a custom data export process.
Modification History |
Programmer |
Date |
Description |
Jim Matysczak |
03/18/2005 |
Original Author |
Method Summary |
java.util.Map |
exportResults(DataManager ao_dm_fp,
DataManager ao_dm_fs,
java.util.Map ao_arguments_submission,
java.util.Map ao_arguments_export_mananger,
java.util.Map ao_previous_results,
java.util.Map ao_operation_arguments,
java.lang.String as_results_file_name,
byte[] ab_data_set)
This method will perform an implementation specific export of the
specified data set. |
exportResults
public java.util.Map exportResults(DataManager ao_dm_fp,
DataManager ao_dm_fs,
java.util.Map ao_arguments_submission,
java.util.Map ao_arguments_export_mananger,
java.util.Map ao_previous_results,
java.util.Map ao_operation_arguments,
java.lang.String as_results_file_name,
byte[] ab_data_set)
throws java.lang.Exception
- This method will perform an implementation specific export of the
specified data set. It should return a map of informational messages
and/or implementation specific identifiers.
- Parameters:
ao_dm_fp
- The Flow Processor Data Manager.ao_dm_fs
- The Flow Submittal Data Manager.ao_arguments_submission
- The Flow Submission arguments defined in FP_SUBMITTAL_MODEL.ao_arguments_export_mananger
- The Flow Export parameters defined in FP_SUBMITTAL_EXPORT_DTL_PARAM.ao_previous_results
- The results of all previous FlowExportManager executions.ao_operation_arguments
- The arguments to the operation being performed.as_results_file_name
- The name of the results file.ab_data_set
- The data set.
- Returns:
- A map of informational messages and data identifiers.
- Throws:
java.lang.Exception
- If an error occurres.