* An application will be deployed in one of three modes, START, DEBUG
* SUSPEND, DEBUG NO SUSPEND.
* @return
*/
protected ApplicationAction getCurrentDeploymentStateApplicationAction() {
DebugModeType type = getDeployedAppDebugMode();
if (type == null) {
return ApplicationAction.START;
}
else {
return type.getApplicationAction();
}
}