The file check-in action for CreatePDF, PDFWatermark and UpdateProperties can be customized by injecting a Java class.
<Job>
...
<FileModifier>
...
<CreatePDF>
<Checkin fileName="${name}.pdf" className="com.acme.tif.CustomCheckin" />
</CreatePDF>
</FileModifier>
</Job>
The class must implement the interface com.technia.tif.enovia.job.executors.file.CheckinAction
, or
extend the default action com.technia.tif.enovia.job.executors.file.DefaultCheckinAction
.
This opens possibilities to either override the check-in operation or perform additional logic before or after the check-in operation took place.