}
@Override
public boolean startWebapp ( Webapp webapp ) throws Exception
{
if (webapp.getStatus().equals(STATUS_RUNNING)) throw new AlreadyRunningWebappException(webapp);
log.info("Starting webapp " + webapp.getName());
HttpGet get = buildHttpGet(START_PATH + webapp.getName());
setupMethod(get, null);
return executeAndCheckIfSuccess(get);
}