B2B Data Exchange
- B2B Data Exchange 10.4.0
- All Products
public void execute() throws ExecutionException { if (isNormalLogLevel()) { fireInfo(this, "Copy Task started"); } internalValidate(); try { if (isVerboseLogLevel()) { fireInfo(this, "Copying file " + sourceFile + " t directory " + destinationDirectory); } long bytesCopied = copy(); if (isVerboseLogLevel()) { fireInfo(this, bytesCopied + " byte(s) copied"); } } catch (IOException exp) { throw new ExecutionException(exp.getMessage(), exp); } if (isNormalLogLevel()) { fireInfo(this, "Copy Task finished"); } }