/**
  * Set last published id for a given node
  *
  * @param nodeId id of node
  * @param messageId id of message
  * @throws AndesException
  */
 @Override
 public void setNodeToLastPublishedId(String nodeId, long messageId) throws AndesException {
   try {
     wrappedAndesContextStoreInstance.setNodeToLastPublishedId(nodeId, messageId);
   } catch (AndesStoreUnavailableException exception) {
     notifyFailures(exception);
     throw exception;
   }
 }