274275276277278279280281282283284
Vector structure = new Vector(); structure.add("/" + resolveURI(webModule)); structure.add(null); structure.add(null); portletApp.postLoad(structure); portletApp.preBuild(structure); portletApp.postBuild(structure); }
293294295296297298299300301302303
251252253254255256257258259260261
Vector structure = new Vector(); structure.add(portletApp); structure.add("/" + resolveURI(webModule)); webApp.postLoad(structure); // refill structure with necessary information webApp.preBuild(structure); webApp.postBuild(structure);
194195196197198199200201202203204
Vector structure = new Vector(); structure.add(portletApp); structure.add(path); try { webApp.postLoad(structure); webApp.preBuild(structure); webApp.postBuild(structure); } catch (Exception e) { throw (UnavailableException) new UnavailableException(e.getMessage()).initCause(e); }
199200201202203204205206207208209
Vector structure = new Vector(); structure.add(portletApp); 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); }
270271272273274275276277278279280
231232233234235236237238239240241
dbEntityCache.putPersistent(persistentObject); // invoke postLoad() lifecycle method if (persistentObject instanceof DbEntityLifecycleAware) { DbEntityLifecycleAware lifecycleAware = (DbEntityLifecycleAware) persistentObject; lifecycleAware.postLoad(); } return persistentObject; } public void lock(String statement) {