Interface FileGeneratorOperation
-
- All Superinterfaces:
CsvFileOperationHandler
- All Known Implementing Classes:
DefaultFileGeneratorOperation
public interface FileGeneratorOperation extends CsvFileOperationHandler
Represents a CSV operation that is able to compute it's output file name.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringassembleOutputFileName(ImportCockpitCronJobModel cronJob)Assembles the name for the output file out of the cron job code and a time stamp, following the pattern: import_package_[cronjob code]_[dd-MM-yyyy-HH-mm-SSS].-
Methods inherited from interface de.hybris.platform.importcockpit.services.impex.generator.operations.CsvFileOperationHandler
createTmpFile, writeToCsvFile
-
-
-
-
Method Detail
-
assembleOutputFileName
java.lang.String assembleOutputFileName(ImportCockpitCronJobModel cronJob)
Assembles the name for the output file out of the cron job code and a time stamp, following the pattern: import_package_[cronjob code]_[dd-MM-yyyy-HH-mm-SSS].- Parameters:
cronJob-- Returns:
- the assembled output file name (pattern: import_package_[cronjob code]_[dd-MM-yyyy-HH-mm-SSS])
-
-