@Override
protected CopyAction createCopyAction() {
// no op if no transformation defined
if (this.transformation == null) {
return new CopyAction() {
@Override
public WorkResult execute(CopyActionProcessingStream copyActionProcessingStream) {
System.out.println("No transformation defined for this task");
return new SimpleWorkResult(false);
}