/**
  * Get last published id for a given node
  *
  * @param nodeId id of node
  * @return last published if of node
  * @throws AndesException
  */
 @Override
 public long getNodeToLastPublishedId(String nodeId) throws AndesException {
   try {
     return wrappedAndesContextStoreInstance.getNodeToLastPublishedId(nodeId);
   } catch (AndesStoreUnavailableException exception) {
     notifyFailures(exception);
     throw exception;
   }
 }