597598599600601602603604605606607
throws RepositoryException { Statistics s = ALL_STATISTICS.get(GET_CHILD_NODES_DATA_BY_PAGE_DESCR); try { s.begin(); return wcs.getChildNodesDataByPage(parent, fromOrderNum, toOrderNum, childs); } finally { s.end();
615616617618619620621622623624625
InvalidItemStateException, IllegalStateException { Statistics s = ALL_STATISTICS.get(RENAME_NODE_DATA_DESCR); try { s.begin(); wcs.rename(data); } finally { s.end();
632633634635636637638639640641642
public void rollback() throws IllegalStateException, RepositoryException { Statistics s = ALL_STATISTICS.get(ROLLBACK_DESCR); try { s.begin(); wcs.rollback(); } finally { s.end();
650651652653654655656657658659660
InvalidItemStateException, IllegalStateException { Statistics s = ALL_STATISTICS.get(UPDATE_NODE_DATA_DESCR); try { s.begin(); wcs.update(data); } finally { s.end();
668669670671672673674675676677678
InvalidItemStateException, IllegalStateException { Statistics s = ALL_STATISTICS.get(UPDATE_PROPERTY_DATA_DESCR); try { s.begin(); wcs.update(data); } finally { s.end();
687688689690691692693694695696697
UnsupportedOperationException { Statistics s = ALL_STATISTICS.get(GET_ACL_HOLDERS); try { s.begin(); return wcs.getACLHolders(); } finally { s.end();
249250251252253254255256257258259
IllegalStateException { Statistics s = ALL_STATISTICS.get(ADD_NODE_DATA_DESCR); try { s.begin(); wcs.add(data); } finally { s.end();
267268269270271272273274275276277
InvalidItemStateException, IllegalStateException { Statistics s = ALL_STATISTICS.get(ADD_PROPERTY_DATA_DESCR); try { s.begin(); wcs.add(data); } finally { s.end();
284285286287288289290291292293294
public void close() throws IllegalStateException, RepositoryException { Statistics s = ALL_STATISTICS.get(CLOSE_DESCR); try { s.begin(); wcs.close(); } finally { s.end();
301302303304305306307308309310311
public void commit() throws IllegalStateException, RepositoryException { Statistics s = ALL_STATISTICS.get(COMMIT_DESCR); try { s.begin(); wcs.commit(); } finally { s.end();