/**
   * Adds the bookmarks folder to the database. Also notifies the appropriate model listeners.
   *
   * @param bookmarksFolder the bookmarks folder
   * @return the bookmarks folder that was added
   */
  @Indexable(type = IndexableType.REINDEX)
  @Override
  public BookmarksFolder addBookmarksFolder(BookmarksFolder bookmarksFolder) {
    bookmarksFolder.setNew(true);

    return bookmarksFolderPersistence.update(bookmarksFolder);
  }