Class SocialActivityLocalServiceUtil

Object
com.liferay.social.kernel.service.SocialActivityLocalServiceUtil

public class SocialActivityLocalServiceUtil extends Object
Provides the local service utility for SocialActivity. This utility wraps com.liferay.portlet.social.service.impl.SocialActivityLocalServiceImpl and is an access point for service operations in application layer code running on the local server. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.
Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Constructor Details

    • SocialActivityLocalServiceUtil

      public SocialActivityLocalServiceUtil()
  • Method Details

    • addActivity

      public static void addActivity(long userId, long groupId, Date createDate, String className, long classPK, int type, String extraData, long receiverUserId) throws PortalException
      Records an activity with the given time in the database.

      This method records a social activity done on an asset, identified by its class name and class primary key, in the database. Additional information (such as the original message ID for a reply to a forum post) is passed in via the extraData in JSON format. For activities affecting another user, a mirror activity is generated that describes the action from the user's point of view. The target user's ID is passed in via the receiverUserId.

      Example for a mirrored activity:
      When a user replies to a message boards post, the reply action is stored in the database with the receiverUserId being the ID of the author of the original message. The extraData contains the ID of the original message in JSON format. A mirror activity is generated with the values of the userId and the receiverUserId swapped. This mirror activity basically describes a "replied to" event.

      Mirror activities are most often used in relation to friend requests and activities.

      Parameters:
      userId - the primary key of the acting user
      groupId - the primary key of the group
      createDate - the activity's date
      className - the target asset's class name
      classPK - the primary key of the target asset
      type - the activity's type
      extraData - any extra data regarding the activity
      receiverUserId - the primary key of the receiving user
      Throws:
      PortalException
    • addActivity

      public static void addActivity(long userId, long groupId, String className, long classPK, int type, String extraData, long receiverUserId) throws PortalException
      Records an activity in the database, using a time based on the current time in an attempt to make the activity's time unique.
      Parameters:
      userId - the primary key of the acting user
      groupId - the primary key of the group
      className - the target asset's class name
      classPK - the primary key of the target asset
      type - the activity's type
      extraData - any extra data regarding the activity
      receiverUserId - the primary key of the receiving user
      Throws:
      PortalException
    • addActivity

      public static void addActivity(SocialActivity activity, SocialActivity mirrorActivity) throws PortalException
      Throws:
      PortalException
    • addSocialActivity

      public static SocialActivity addSocialActivity(SocialActivity socialActivity)
      Adds the social activity to the database. Also notifies the appropriate model listeners.

      Important: Inspect SocialActivityLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.

      Parameters:
      socialActivity - the social activity
      Returns:
      the social activity that was added
    • addUniqueActivity

      public static void addUniqueActivity(long userId, long groupId, Date createDate, String className, long classPK, int type, String extraData, long receiverUserId) throws PortalException
      Records an activity in the database, but only if there isn't already an activity with the same parameters.

      For the main functionality see addActivity(long, long, Date, String, long, int, String, long)

      Parameters:
      userId - the primary key of the acting user
      groupId - the primary key of the group
      createDate - the activity's date
      className - the target asset's class name
      classPK - the primary key of the target asset
      type - the activity's type
      extraData - any extra data regarding the activity
      receiverUserId - the primary key of the receiving user
      Throws:
      PortalException
    • addUniqueActivity

      public static void addUniqueActivity(long userId, long groupId, String className, long classPK, int type, String extraData, long receiverUserId) throws PortalException
      Records an activity with the current time in the database, but only if there isn't one with the same parameters.

      For the main functionality see addActivity(long, long, Date, String, long, int, String, long)

      Parameters:
      userId - the primary key of the acting user
      groupId - the primary key of the group
      className - the target asset's class name
      classPK - the primary key of the target asset
      type - the activity's type
      extraData - any extra data regarding the activity
      receiverUserId - the primary key of the receiving user
      Throws:
      PortalException
    • createPersistedModel

      public static PersistedModel createPersistedModel(Serializable primaryKeyObj) throws PortalException
      Throws:
      PortalException
    • createSocialActivity

      public static SocialActivity createSocialActivity(long activityId)
      Creates a new social activity with the primary key. Does not add the social activity to the database.
      Parameters:
      activityId - the primary key for the new social activity
      Returns:
      the new social activity
    • deleteActivities

      public static void deleteActivities(AssetEntry assetEntry) throws PortalException
      Removes stored activities for the asset.
      Parameters:
      assetEntry - the asset from which to remove stored activities
      Throws:
      PortalException
    • deleteActivities

      public static void deleteActivities(long groupId)
    • deleteActivities

      public static void deleteActivities(String className, long classPK) throws PortalException
      Removes stored activities for the asset identified by the class name and class primary key.
      Parameters:
      className - the target asset's class name
      classPK - the primary key of the target asset
      Throws:
      PortalException
    • deleteActivity

      public static void deleteActivity(long activityId) throws PortalException
      Removes the stored activity from the database.
      Parameters:
      activityId - the primary key of the stored activity
      Throws:
      PortalException
    • deleteActivity

      public static void deleteActivity(SocialActivity activity) throws PortalException
      Removes the stored activity and its mirror activity from the database.
      Parameters:
      activity - the activity to be removed
      Throws:
      PortalException
    • deletePersistedModel

      public static PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
      Throws:
      PortalException
    • deleteSocialActivity

      public static SocialActivity deleteSocialActivity(long activityId) throws PortalException
      Deletes the social activity with the primary key from the database. Also notifies the appropriate model listeners.

      Important: Inspect SocialActivityLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.

      Parameters:
      activityId - the primary key of the social activity
      Returns:
      the social activity that was removed
      Throws:
      PortalException - if a social activity with the primary key could not be found
    • deleteSocialActivity

      public static SocialActivity deleteSocialActivity(SocialActivity socialActivity)
      Deletes the social activity from the database. Also notifies the appropriate model listeners.

      Important: Inspect SocialActivityLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.

      Parameters:
      socialActivity - the social activity
      Returns:
      the social activity that was removed
    • deleteUserActivities

      public static void deleteUserActivities(long userId) throws PortalException
      Removes the user's stored activities from the database.

      This method removes all activities where the user is either the actor or the receiver.

      Parameters:
      userId - the primary key of the user
      Throws:
      PortalException
    • dslQuery

      public static <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
    • dslQueryCount

      public static int dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
    • dynamicQuery

      public static DynamicQuery dynamicQuery()
    • dynamicQuery

      public static <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
      Performs a dynamic query on the database and returns the matching rows.
      Parameters:
      dynamicQuery - the dynamic query
      Returns:
      the matching rows
    • dynamicQuery

      public static <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
      Performs a dynamic query on the database and returns a range of the matching rows.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.portlet.social.model.impl.SocialActivityModelImpl.

      Parameters:
      dynamicQuery - the dynamic query
      start - the lower bound of the range of model instances
      end - the upper bound of the range of model instances (not inclusive)
      Returns:
      the range of matching rows
    • dynamicQuery

      public static <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator)
      Performs a dynamic query on the database and returns an ordered range of the matching rows.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.portlet.social.model.impl.SocialActivityModelImpl.

      Parameters:
      dynamicQuery - the dynamic query
      start - the lower bound of the range of model instances
      end - the upper bound of the range of model instances (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the ordered range of matching rows
    • dynamicQueryCount

      public static long dynamicQueryCount(DynamicQuery dynamicQuery)
      Returns the number of rows matching the dynamic query.
      Parameters:
      dynamicQuery - the dynamic query
      Returns:
      the number of rows matching the dynamic query
    • dynamicQueryCount

      public static long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
      Returns the number of rows matching the dynamic query.
      Parameters:
      dynamicQuery - the dynamic query
      projection - the projection to apply to the query
      Returns:
      the number of rows matching the dynamic query
    • fetchFirstActivity

      public static SocialActivity fetchFirstActivity(String className, long classPK, int type)
    • fetchSocialActivity

      public static SocialActivity fetchSocialActivity(long activityId)
    • getActionableDynamicQuery

      public static ActionableDynamicQuery getActionableDynamicQuery()
    • getActivities

      @Deprecated public static List<SocialActivity> getActivities(long classNameId, int start, int end)
      Deprecated.
      As of Athanasius (7.3.x), replaced by getActivities(long, String, int, int) Returns a range of all the activities done on assets identified by the class name ID.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      classNameId - the target asset's class name ID
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching activities
    • getActivities

      public static List<SocialActivity> getActivities(long mirrorActivityId, long classNameId, long classPK, int start, int end)
      Returns a range of all the activities done on the asset identified by the class name ID and class primary key that are mirrors of the activity identified by the mirror activity ID.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      mirrorActivityId - the primary key of the mirror activity
      classNameId - the target asset's class name ID
      classPK - the primary key of the target asset
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching activities
    • getActivities

      public static List<SocialActivity> getActivities(long companyId, String className, int start, int end)
      Returns a range of all the activities done on assets identified by the company ID and class name.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      companyId - the primary key of the company
      className - the target asset's class name
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching activities
    • getActivities

      public static List<SocialActivity> getActivities(long mirrorActivityId, String className, long classPK, int start, int end)
      Returns a range of all the activities done on the asset identified by the class name and the class primary key that are mirrors of the activity identified by the mirror activity ID.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      mirrorActivityId - the primary key of the mirror activity
      className - the target asset's class name
      classPK - the primary key of the target asset
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching activities
    • getActivitiesCount

      @Deprecated public static int getActivitiesCount(long classNameId)
      Deprecated.
      As of Athanasius (7.3.x), replaced by getActivitiesCount(long, String)
      Parameters:
      classNameId - the target asset's class name ID
      Returns:
      the number of matching activities
    • getActivitiesCount

      public static int getActivitiesCount(long userId, long groupId, Date createDate, String className, long classPK, int type, long receiverUserId)
    • getActivitiesCount

      public static int getActivitiesCount(long mirrorActivityId, long classNameId, long classPK)
      Returns the number of activities done on the asset identified by the class name ID and class primary key that are mirrors of the activity identified by the mirror activity ID.
      Parameters:
      mirrorActivityId - the primary key of the mirror activity
      classNameId - the target asset's class name ID
      classPK - the primary key of the target asset
      Returns:
      the number of matching activities
    • getActivitiesCount

      public static int getActivitiesCount(long companyId, String className)
      Returns the number of activities done on assets identified by company ID and class name.
      Parameters:
      companyId - the primary key of the company
      className - the target asset's class name
      Returns:
      the number of matching activities
    • getActivitiesCount

      public static int getActivitiesCount(long mirrorActivityId, String className, long classPK)
      Returns the number of activities done on the asset identified by the class name and class primary key that are mirrors of the activity identified by the mirror activity ID.
      Parameters:
      mirrorActivityId - the primary key of the mirror activity
      className - the target asset's class name
      classPK - the primary key of the target asset
      Returns:
      the number of matching activities
    • getActivity

      public static SocialActivity getActivity(long activityId) throws PortalException
      Returns the activity identified by its primary key.
      Parameters:
      activityId - the primary key of the activity
      Returns:
      Returns the activity
      Throws:
      PortalException
    • getActivitySetActivities

      public static List<SocialActivity> getActivitySetActivities(long activitySetId, int start, int end)
    • getApprovedActivities

      public static List<SocialActivity> getApprovedActivities(long classPK, double version)
    • getGroupActivities

      public static List<SocialActivity> getGroupActivities(long groupId, int start, int end)
      Returns a range of all the activities done in the group.

      This method only finds activities without mirrors.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      groupId - the primary key of the group
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching activities
    • getGroupActivitiesCount

      public static int getGroupActivitiesCount(long groupId)
      Returns the number of activities done in the group.

      This method only counts activities without mirrors.

      Parameters:
      groupId - the primary key of the group
      Returns:
      the number of matching activities
    • getGroupUsersActivities

      public static List<SocialActivity> getGroupUsersActivities(long groupId, int start, int end)
      Returns a range of activities done by users that are members of the group.

      This method only finds activities without mirrors.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      groupId - the primary key of the group
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching activities
    • getGroupUsersActivitiesCount

      public static int getGroupUsersActivitiesCount(long groupId)
      Returns the number of activities done by users that are members of the group.

      This method only counts activities without mirrors.

      Parameters:
      groupId - the primary key of the group
      Returns:
      the number of matching activities
    • getIndexableActionableDynamicQuery

      public static IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
    • getMirrorActivity

      public static SocialActivity getMirrorActivity(long mirrorActivityId) throws PortalException
      Returns the activity that has the mirror activity.
      Parameters:
      mirrorActivityId - the primary key of the mirror activity
      Returns:
      Returns the mirror activity
      Throws:
      PortalException
    • getOrganizationActivities

      public static List<SocialActivity> getOrganizationActivities(long organizationId, int start, int end)
      Returns a range of all the activities done in the organization. This method only finds activities without mirrors.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      organizationId - the primary key of the organization
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching activities
    • getOrganizationActivitiesCount

      public static int getOrganizationActivitiesCount(long organizationId)
      Returns the number of activities done in the organization. This method only counts activities without mirrors.
      Parameters:
      organizationId - the primary key of the organization
      Returns:
      the number of matching activities
    • getOrganizationUsersActivities

      public static List<SocialActivity> getOrganizationUsersActivities(long organizationId, int start, int end)
      Returns a range of all the activities done by users of the organization. This method only finds activities without mirrors.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      organizationId - the primary key of the organization
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching activities
    • getOrganizationUsersActivitiesCount

      public static int getOrganizationUsersActivitiesCount(long organizationId)
      Returns the number of activities done by users of the organization. This method only counts activities without mirrors.
      Parameters:
      organizationId - the primary key of the organization
      Returns:
      the number of matching activities
    • getOSGiServiceIdentifier

      public static String getOSGiServiceIdentifier()
      Returns the OSGi service identifier.
      Returns:
      the OSGi service identifier
    • getPersistedModel

      public static PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException
      Throws:
      PortalException
    • getRelationActivities

      public static List<SocialActivity> getRelationActivities(long userId, int start, int end)
      Returns a range of all the activities done by users in a relationship with the user identified by the user ID.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      userId - the primary key of the user
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching activities
    • getRelationActivities

      public static List<SocialActivity> getRelationActivities(long userId, int type, int start, int end)
      Returns a range of all the activities done by users in a relationship of type type with the user identified by userId. This method only finds activities without mirrors.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      userId - the primary key of the user
      type - the relationship type
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching activities
    • getRelationActivitiesCount

      public static int getRelationActivitiesCount(long userId)
      Returns the number of activities done by users in a relationship with the user identified by userId.
      Parameters:
      userId - the primary key of the user
      Returns:
      the number of matching activities
    • getRelationActivitiesCount

      public static int getRelationActivitiesCount(long userId, int type)
      Returns the number of activities done by users in a relationship of type type with the user identified by userId. This method only counts activities without mirrors.
      Parameters:
      userId - the primary key of the user
      type - the relationship type
      Returns:
      the number of matching activities
    • getSocialActivities

      public static List<SocialActivity> getSocialActivities(int start, int end)
      Returns a range of all the social activities.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent, then the query will include the default ORDER BY logic from com.liferay.portlet.social.model.impl.SocialActivityModelImpl.

      Parameters:
      start - the lower bound of the range of social activities
      end - the upper bound of the range of social activities (not inclusive)
      Returns:
      the range of social activities
    • getSocialActivitiesCount

      public static int getSocialActivitiesCount()
      Returns the number of social activities.
      Returns:
      the number of social activities
    • getSocialActivity

      public static SocialActivity getSocialActivity(long activityId) throws PortalException
      Returns the social activity with the primary key.
      Parameters:
      activityId - the primary key of the social activity
      Returns:
      the social activity
      Throws:
      PortalException - if a social activity with the primary key could not be found
    • getUserActivities

      public static List<SocialActivity> getUserActivities(long userId, int start, int end)
      Returns a range of all the activities done by the user.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      userId - the primary key of the user
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching activities
    • getUserActivitiesCount

      public static int getUserActivitiesCount(long userId)
      Returns the number of activities done by the user.
      Parameters:
      userId - the primary key of the user
      Returns:
      the number of matching activities
    • getUserGroupsActivities

      public static List<SocialActivity> getUserGroupsActivities(long userId, int start, int end)
      Returns a range of all the activities done in the user's groups. This method only finds activities without mirrors.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      userId - the primary key of the user
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching activities
    • getUserGroupsActivitiesCount

      public static int getUserGroupsActivitiesCount(long userId)
      Returns the number of activities done in user's groups. This method only counts activities without mirrors.
      Parameters:
      userId - the primary key of the user
      Returns:
      the number of matching activities
    • getUserGroupsAndOrganizationsActivities

      public static List<SocialActivity> getUserGroupsAndOrganizationsActivities(long userId, int start, int end)
      Returns a range of all the activities done in the user's groups and organizations. This method only finds activities without mirrors.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      userId - the primary key of the user
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching activities
    • getUserGroupsAndOrganizationsActivitiesCount

      public static int getUserGroupsAndOrganizationsActivitiesCount(long userId)
      Returns the number of activities done in user's groups and organizations. This method only counts activities without mirrors.
      Parameters:
      userId - the primary key of the user
      Returns:
      the number of matching activities
    • getUserOrganizationsActivities

      public static List<SocialActivity> getUserOrganizationsActivities(long userId, int start, int end)
      Returns a range of all activities done in the user's organizations. This method only finds activities without mirrors.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil#ALL_POS will return the full result set.

      Parameters:
      userId - the primary key of the user
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching activities
    • getUserOrganizationsActivitiesCount

      public static int getUserOrganizationsActivitiesCount(long userId)
      Returns the number of activities done in the user's organizations. This method only counts activities without mirrors.
      Parameters:
      userId - the primary key of the user
      Returns:
      the number of matching activities
    • updateSocialActivity

      public static SocialActivity updateSocialActivity(SocialActivity socialActivity)
      Updates the social activity in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

      Important: Inspect SocialActivityLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.

      Parameters:
      socialActivity - the social activity
      Returns:
      the social activity that was updated
    • getService

      public static SocialActivityLocalService getService()
    • setService

      public static void setService(SocialActivityLocalService service)