System.out.println("Job Status: " + execution.getStatus().toString());
} catch (InterruptedException e) {
System.err.println("ABORTING");
e.printStackTrace();
try {
execution.kill();
execution.waitUntilDone();
} catch (InterruptedException e1) {
throw new RuntimeException(e1);
}
throw new RuntimeException(e);