Class SocialActivityServiceBaseImpl

Object
com.liferay.portal.kernel.service.BaseServiceImpl
com.liferay.portlet.social.service.base.SocialActivityServiceBaseImpl
All Implemented Interfaces:
com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService, com.liferay.portal.kernel.service.BaseService, com.liferay.social.kernel.service.SocialActivityService
Direct Known Subclasses:
SocialActivityServiceImpl

public abstract class SocialActivityServiceBaseImpl extends com.liferay.portal.kernel.service.BaseServiceImpl implements com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService, com.liferay.social.kernel.service.SocialActivityService
Provides the base implementation for the social activity remote service.

This implementation exists only as a container for the default service methods generated by ServiceBuilder. All custom service methods should be put in SocialActivityServiceImpl.

Author:
Brian Wing Shun Chan
See Also:
{$generated.description}
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected com.liferay.counter.kernel.service.CounterLocalService
     
    protected com.liferay.social.kernel.service.persistence.SocialActivityFinder
     
    protected com.liferay.social.kernel.service.SocialActivityLocalService
     
    protected com.liferay.social.kernel.service.persistence.SocialActivityPersistence
     
    protected com.liferay.social.kernel.service.SocialActivityService
     

    Fields inherited from class com.liferay.portal.kernel.service.BaseServiceImpl

    ANONYMOUS_NAMES, JRUN_ANONYMOUS, ORACLE_ANONYMOUS, SUN_ANONYMOUS, WEBLOGIC_ANONYMOUS
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    void
     
    com.liferay.counter.kernel.service.CounterLocalService
    Returns the counter local service.
    protected Class<?>
     
    protected String
     
    Returns the OSGi service identifier.
    com.liferay.social.kernel.service.persistence.SocialActivityFinder
    Returns the social activity finder.
    com.liferay.social.kernel.service.SocialActivityLocalService
    Returns the social activity local service.
    com.liferay.social.kernel.service.persistence.SocialActivityPersistence
    Returns the social activity persistence.
    com.liferay.social.kernel.service.SocialActivityService
    Returns the social activity remote service.
    protected void
    Performs a SQL query.
    void
    setCounterLocalService(com.liferay.counter.kernel.service.CounterLocalService counterLocalService)
    Sets the counter local service.
    void
    setSocialActivityFinder(com.liferay.social.kernel.service.persistence.SocialActivityFinder socialActivityFinder)
    Sets the social activity finder.
    void
    setSocialActivityLocalService(com.liferay.social.kernel.service.SocialActivityLocalService socialActivityLocalService)
    Sets the social activity local service.
    void
    setSocialActivityPersistence(com.liferay.social.kernel.service.persistence.SocialActivityPersistence socialActivityPersistence)
    Sets the social activity persistence.
    void
    setSocialActivityService(com.liferay.social.kernel.service.SocialActivityService socialActivityService)
    Sets the social activity remote service.

    Methods inherited from class com.liferay.portal.kernel.service.BaseServiceImpl

    getClassLoader, getGuestOrUser, getGuestOrUserId, getPermissionChecker, getUser, getUserId

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface com.liferay.social.kernel.service.SocialActivityService

    getActivities, getActivities, getActivities, getActivities, getActivitiesCount, getActivitiesCount, getActivitiesCount, getActivitiesCount, getActivity, getActivitySetActivities, getGroupActivities, getGroupActivitiesCount, getGroupUsersActivities, getGroupUsersActivitiesCount, getMirrorActivity, getOrganizationActivities, getOrganizationActivitiesCount, getOrganizationUsersActivities, getOrganizationUsersActivitiesCount, getRelationActivities, getRelationActivities, getRelationActivitiesCount, getRelationActivitiesCount, getUserActivities, getUserActivitiesCount, getUserGroupsActivities, getUserGroupsActivitiesCount, getUserGroupsAndOrganizationsActivities, getUserGroupsAndOrganizationsActivitiesCount, getUserOrganizationsActivities, getUserOrganizationsActivitiesCount
  • Field Details

    • socialActivityLocalService

      @BeanReference(type=com.liferay.social.kernel.service.SocialActivityLocalService.class) protected com.liferay.social.kernel.service.SocialActivityLocalService socialActivityLocalService
    • socialActivityService

      @BeanReference(type=com.liferay.social.kernel.service.SocialActivityService.class) protected com.liferay.social.kernel.service.SocialActivityService socialActivityService
    • socialActivityPersistence

      @BeanReference(type=com.liferay.social.kernel.service.persistence.SocialActivityPersistence.class) protected com.liferay.social.kernel.service.persistence.SocialActivityPersistence socialActivityPersistence
    • socialActivityFinder

      @BeanReference(type=com.liferay.social.kernel.service.persistence.SocialActivityFinder.class) protected com.liferay.social.kernel.service.persistence.SocialActivityFinder socialActivityFinder
    • counterLocalService

      @BeanReference(type=com.liferay.counter.kernel.service.CounterLocalService.class) protected com.liferay.counter.kernel.service.CounterLocalService counterLocalService
  • Constructor Details

    • SocialActivityServiceBaseImpl

      public SocialActivityServiceBaseImpl()
  • Method Details

    • getSocialActivityLocalService

      public com.liferay.social.kernel.service.SocialActivityLocalService getSocialActivityLocalService()
      Returns the social activity local service.
      Returns:
      the social activity local service
    • setSocialActivityLocalService

      public void setSocialActivityLocalService(com.liferay.social.kernel.service.SocialActivityLocalService socialActivityLocalService)
      Sets the social activity local service.
      Parameters:
      socialActivityLocalService - the social activity local service
    • getSocialActivityService

      public com.liferay.social.kernel.service.SocialActivityService getSocialActivityService()
      Returns the social activity remote service.
      Returns:
      the social activity remote service
    • setSocialActivityService

      public void setSocialActivityService(com.liferay.social.kernel.service.SocialActivityService socialActivityService)
      Sets the social activity remote service.
      Parameters:
      socialActivityService - the social activity remote service
    • getSocialActivityPersistence

      public com.liferay.social.kernel.service.persistence.SocialActivityPersistence getSocialActivityPersistence()
      Returns the social activity persistence.
      Returns:
      the social activity persistence
    • setSocialActivityPersistence

      public void setSocialActivityPersistence(com.liferay.social.kernel.service.persistence.SocialActivityPersistence socialActivityPersistence)
      Sets the social activity persistence.
      Parameters:
      socialActivityPersistence - the social activity persistence
    • getSocialActivityFinder

      public com.liferay.social.kernel.service.persistence.SocialActivityFinder getSocialActivityFinder()
      Returns the social activity finder.
      Returns:
      the social activity finder
    • setSocialActivityFinder

      public void setSocialActivityFinder(com.liferay.social.kernel.service.persistence.SocialActivityFinder socialActivityFinder)
      Sets the social activity finder.
      Parameters:
      socialActivityFinder - the social activity finder
    • getCounterLocalService

      public com.liferay.counter.kernel.service.CounterLocalService getCounterLocalService()
      Returns the counter local service.
      Returns:
      the counter local service
    • setCounterLocalService

      public void setCounterLocalService(com.liferay.counter.kernel.service.CounterLocalService counterLocalService)
      Sets the counter local service.
      Parameters:
      counterLocalService - the counter local service
    • afterPropertiesSet

      public void afterPropertiesSet()
    • destroy

      public void destroy()
    • getOSGiServiceIdentifier

      public String getOSGiServiceIdentifier()
      Returns the OSGi service identifier.
      Specified by:
      getOSGiServiceIdentifier in interface com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService
      Specified by:
      getOSGiServiceIdentifier in interface com.liferay.social.kernel.service.SocialActivityService
      Returns:
      the OSGi service identifier
    • getModelClass

      protected Class<?> getModelClass()
    • getModelClassName

      protected String getModelClassName()
    • runSQL

      protected void runSQL(String sql)
      Performs a SQL query.
      Parameters:
      sql - the sql query