667668669670671672673674675676677
InvalidItemStateException, IllegalStateException { Statistics s = ALL_STATISTICS.get(UPDATE_PROPERTY_DATA_DESCR); try { s.begin(); wcs.update(data); } finally { s.end();
686687688689690691692693694695696
UnsupportedOperationException { Statistics s = ALL_STATISTICS.get(GET_ACL_HOLDERS); try { s.begin(); return wcs.getACLHolders(); } finally { s.end();
274275276277278279280281282283284
IllegalStateException { Statistics s = ALL_STATISTICS.get(ADD_NODE_DATA_DESCR); try { s.begin(); wcs.add(data); } finally { s.end();
292293294295296297298299300301302
InvalidItemStateException, IllegalStateException { Statistics s = ALL_STATISTICS.get(ADD_PROPERTY_DATA_DESCR); try { s.begin(); wcs.add(data); } finally { s.end();
309310311312313314315316317318319
public void close() throws IllegalStateException, RepositoryException { Statistics s = ALL_STATISTICS.get(CLOSE_DESCR); try { s.begin(); wcs.close(); } finally { s.end();
326327328329330331332333334335336
public void commit() throws IllegalStateException, RepositoryException { Statistics s = ALL_STATISTICS.get(COMMIT_DESCR); try { s.begin(); wcs.commit(); } finally { s.end();
344345346347348349350351352353354
InvalidItemStateException, IllegalStateException { Statistics s = ALL_STATISTICS.get(DELETE_NODE_DATA_DESCR); try { s.begin(); wcs.delete(data); } finally { s.end();
362363364365366367368369370371372
InvalidItemStateException, IllegalStateException { Statistics s = ALL_STATISTICS.get(DELETE_PROPERTY_DATA_DESCR); try { s.begin(); wcs.delete(data); } finally { s.end();
379380381382383384385386387388389
public int getLastOrderNumber(NodeData parent) throws RepositoryException { Statistics s = ALL_STATISTICS.get(GET_LAST_ORDER_NUMBER_DESCR); try { s.begin(); return wcs.getLastOrderNumber(parent); } finally { s.end();
396397398399400401402403404405406
public int getChildNodesCount(NodeData parent) throws RepositoryException { Statistics s = ALL_STATISTICS.get(GET_CHILD_NODES_COUNT_DESCR); try { s.begin(); return wcs.getChildNodesCount(parent); } finally { s.end();