Class E2EChangeAnalysisFilesJob
java.lang.Object
de.hybris.e2e.hybrisrootcauseanalysis.changeanalysis.job.E2EChangeAnalysisFilesJob
- All Implemented Interfaces:
JobPerformable<CronJobModel>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanChecks whether the execution is implemented abortable.booleanChecks whether the execution can be performed at the moment.perform(CronJobModel model) The execution body for aServicelayerJob.voidsetChangesPropertiesList(List<E2EChangesPropertiesService> changesPropertiesList) voidsetChangesXmlList(List<E2EChangesXmlService> changesXmlList) voidsetPropertiesFileService(E2EPropertiesFileService propertiesFileService) voidsetXmlFileService(E2EXmlFileService xmlFileService)
-
Constructor Details
-
E2EChangeAnalysisFilesJob
public E2EChangeAnalysisFilesJob()
-
-
Method Details
-
isAbortable
public boolean isAbortable()Description copied from interface:JobPerformableChecks whether the execution is implemented abortable.- Specified by:
isAbortablein interfaceJobPerformable<CronJobModel>- Returns:
- true if the execution can be aborted
-
isPerformable
public boolean isPerformable()Description copied from interface:JobPerformableChecks whether the execution can be performed at the moment.- Specified by:
isPerformablein interfaceJobPerformable<CronJobModel>- Returns:
- true if the execution is ready
-
perform
Description copied from interface:JobPerformableThe execution body for aServicelayerJob. Implement here your execution logic. It can be called synchronous or asynchronous. So be aware of thread-safety. Method will return a result object saying if the execution has reached end and if it was successful.- Specified by:
performin interfaceJobPerformable<CronJobModel>- Parameters:
model- the related CronJob in whose context the execution will be performed.- Returns:
- a
PerformResultthat indicates whether theexecutionwas successfully executed or not and has finished or not.
-
setPropertiesFileService
- Parameters:
propertiesFileService- the propertiesFileService to set
-
setXmlFileService
- Parameters:
xmlFileService- the xmlFileService to set
-
setChangesPropertiesList
- Parameters:
changesPropertiesList- the changesPropertiesList to set
-
setChangesXmlList
- Parameters:
changesXmlList- the changesXmlList to set
-