private void updateData(OCShare share) {
   // Update DB with the response
   share.setPath(mPath); // TODO - check if may be moved to UpdateRemoteShareOperation
   if (mPath.endsWith(FileUtils.PATH_SEPARATOR)) {
     share.setIsFolder(true);
   } else {
     share.setIsFolder(false);
   }
   getStorageManager().saveShare(share);
 }