* @param uuid resource uuid
* @return <code>true</code> if matching taskDescriptor has been found and has been withdrawn
*/
public boolean cancel(RequestContext context, String uuid) {
try {
HjCancelRequest request = new HjCancelRequest(context, uuid);
return request.execute();
} catch (SQLException ex) {
LOGGER.log(Level.WARNING, "[SYNCHRONIZER] Error canceling task", ex);
return false;
}
}