TargetModuleID[] targetModuleIDs = new TargetModuleID[list.size()];
list.toArray(targetModuleIDs);
return targetModuleIDs;
} catch (Exception e) {
TargetException tex = new TargetException("Failed to get available modules");
tex.initCause(e);
throw tex;
}
}
private void executeDeploymentPlan(DeploymentPlan plan, DeploymentAction deployAction) throws Exception {