/**
   * Adds the social activity limit to the database. Also notifies the appropriate model listeners.
   *
   * @param socialActivityLimit the social activity limit
   * @return the social activity limit that was added
   * @throws SystemException if a system exception occurred
   */
  @Indexable(type = IndexableType.REINDEX)
  @Override
  public SocialActivityLimit addSocialActivityLimit(SocialActivityLimit socialActivityLimit)
      throws SystemException {
    socialActivityLimit.setNew(true);

    return socialActivityLimitPersistence.update(socialActivityLimit);
  }