System.out.println("Initializing application...");
startApplication();
// create the account and the module
UserAccount account = createAccount();
Module module = createModule(account);
// execute the module
System.out.println("START: Executing module...");
Executor executor = getExecutionService().createExecutor(module);
getExecutionService().startExecution(executor, true);