319320321322323324325326327328329
InvalidItemStateException, IllegalStateException { Statistics s = ALL_STATISTICS.get(DELETE_NODE_DATA_DESCR); try { s.begin(); wcs.delete(data); } finally { s.end();
337338339340341342343344345346347
InvalidItemStateException, IllegalStateException { Statistics s = ALL_STATISTICS.get(DELETE_PROPERTY_DATA_DESCR); try { s.begin(); wcs.delete(data); } finally { s.end();
354355356357358359360361362363364
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();
371372373374375376377378379380381
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();
388389390391392393394395396397398
public List<NodeData> getChildNodesData(NodeData parent) throws RepositoryException, IllegalStateException { Statistics s = ALL_STATISTICS.get(GET_CHILD_NODES_DATA_DESCR); try { s.begin(); return wcs.getChildNodesData(parent); } finally { s.end();
406407408409410411412413414415416
IllegalStateException { Statistics s = ALL_STATISTICS.get(GET_CHILD_NODES_DATA_PATTERN_DESCR); try { s.begin(); return wcs.getChildNodesData(parent, pattern); } finally { s.end();
423424425426427428429430431432433
public List<PropertyData> getChildPropertiesData(NodeData parent) throws RepositoryException, IllegalStateException { Statistics s = ALL_STATISTICS.get(GET_CHILD_PROPERTIES_DATA_DESCR); try { s.begin(); return wcs.getChildPropertiesData(parent); } finally { s.end();
441442443444445446447448449450451
throws RepositoryException, IllegalStateException { Statistics s = ALL_STATISTICS.get(GET_CHILD_PROPERTIES_DATA_PATTERN_DESCR); try { s.begin(); return wcs.getChildPropertiesData(parent, pattern); } finally { s.end();
467468469470471472473474475476477
IllegalStateException { Statistics s = ALL_STATISTICS.get(GET_ITEM_DATA_BY_NODE_DATA_NQ_PATH_ENTRY_DESCR); try { s.begin(); return wcs.getItemData(parentData, name, itemType); } finally { s.end();
484485486487488489490491492493494
public ItemData getItemData(String identifier) throws RepositoryException, IllegalStateException { Statistics s = ALL_STATISTICS.get(GET_ITEM_DATA_BY_ID_DESCR); try { s.begin(); return wcs.getItemData(identifier); } finally { s.end();