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
FieldsModifier and TypeFieldDescriptionprotected com.liferay.counter.kernel.service.CounterLocalServiceprotected com.liferay.social.kernel.service.persistence.SocialActivityFinderprotected com.liferay.social.kernel.service.SocialActivityLocalServiceprotected com.liferay.social.kernel.service.persistence.SocialActivityPersistenceprotected com.liferay.social.kernel.service.SocialActivityServiceFields inherited from class com.liferay.portal.kernel.service.BaseServiceImpl
ANONYMOUS_NAMES, JRUN_ANONYMOUS, ORACLE_ANONYMOUS, SUN_ANONYMOUS, WEBLOGIC_ANONYMOUS -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidvoiddestroy()com.liferay.counter.kernel.service.CounterLocalServiceReturns the counter local service.protected Class<?>protected StringReturns the OSGi service identifier.com.liferay.social.kernel.service.persistence.SocialActivityFinderReturns the social activity finder.com.liferay.social.kernel.service.SocialActivityLocalServiceReturns the social activity local service.com.liferay.social.kernel.service.persistence.SocialActivityPersistenceReturns the social activity persistence.com.liferay.social.kernel.service.SocialActivityServiceReturns the social activity remote service.protected voidPerforms a SQL query.voidsetCounterLocalService(com.liferay.counter.kernel.service.CounterLocalService counterLocalService) Sets the counter local service.voidsetSocialActivityFinder(com.liferay.social.kernel.service.persistence.SocialActivityFinder socialActivityFinder) Sets the social activity finder.voidsetSocialActivityLocalService(com.liferay.social.kernel.service.SocialActivityLocalService socialActivityLocalService) Sets the social activity local service.voidsetSocialActivityPersistence(com.liferay.social.kernel.service.persistence.SocialActivityPersistence socialActivityPersistence) Sets the social activity persistence.voidsetSocialActivityService(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, getUserIdMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods 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
-
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
Returns the OSGi service identifier.- Specified by:
getOSGiServiceIdentifierin interfacecom.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService- Specified by:
getOSGiServiceIdentifierin interfacecom.liferay.social.kernel.service.SocialActivityService- Returns:
- the OSGi service identifier
-
getModelClass
-
getModelClassName
-
runSQL
Performs a SQL query.- Parameters:
sql- the sql query
-
socialActivityLocalService