String orionProject = req.getParameter("orionProject");
boolean configOnly = "true".equals(req.getParameter("configOnly"));
String context = req.getContextPath();
if (orionProject != null) {
OrionUser u = (OrionUser) user;
try {
projectName = u.computeMaqettaPath(orionProject, context);
} catch (CoreException e) {
throw new IOException(e);
}
}