256257258259260261262263264265266
webApp.postLoad(structure); // refill structure with necessary information webApp.preBuild(structure); webApp.postBuild(structure); if (log.isDebugEnabled()) { log.debug(webApp.toString()); }
196197198199200201202203204205206
structure.add(path); try { webApp.postLoad(structure); webApp.preBuild(structure); webApp.postBuild(structure); } catch (Exception e) { throw (UnavailableException) new UnavailableException(e.getMessage()).initCause(e); } return portletApp; }
201202203204205206207208209210211
structure.add(path); try { webApp.postLoad(structure); webApp.preBuild(structure); webApp.postBuild(structure); } catch (Exception e) { throw (UnavailableException) new UnavailableException("Problem: " + e.getMessage() + ". Context = " + contextName).initCause(e); } return portletApp; }
275276277278279280281282283284285