throws ExtensionException {
if (log.isInfoEnabled())
log.info("Starting Java server application "
+ shortcut.getResourceName());
ServerApplicationLauncher app;
try {
app = new ServerApplicationLauncher(parameters, shortcut
.getApplication(), launchSession.getSession(), shortcut);
app.start();
} catch (Exception e) {
throw new ExtensionException(ExtensionException.FAILED_TO_LAUNCH, e);
}
return null;