Class TeamServiceBaseImpl

Object
com.liferay.portal.kernel.service.BaseServiceImpl
com.liferay.portal.service.base.TeamServiceBaseImpl
All Implemented Interfaces:
com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService, com.liferay.portal.kernel.service.BaseService, com.liferay.portal.kernel.service.TeamService
Direct Known Subclasses:
TeamServiceImpl

public abstract class TeamServiceBaseImpl extends com.liferay.portal.kernel.service.BaseServiceImpl implements com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService, com.liferay.portal.kernel.service.TeamService
Provides the base implementation for the team 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 TeamServiceImpl.

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.portal.kernel.service.persistence.TeamFinder
     
    protected com.liferay.portal.kernel.service.TeamLocalService
     
    protected com.liferay.portal.kernel.service.persistence.TeamPersistence
     
    protected com.liferay.portal.kernel.service.TeamService
     
    protected com.liferay.portal.kernel.service.persistence.UserGroupPersistence
     
    protected com.liferay.portal.kernel.service.persistence.UserPersistence
     

    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.portal.kernel.service.persistence.TeamFinder
    Returns the team finder.
    com.liferay.portal.kernel.service.TeamLocalService
    Returns the team local service.
    com.liferay.portal.kernel.service.persistence.TeamPersistence
    Returns the team persistence.
    com.liferay.portal.kernel.service.TeamService
    Returns the team remote service.
    protected void
    Performs a SQL query.
    void
    setCounterLocalService(com.liferay.counter.kernel.service.CounterLocalService counterLocalService)
    Sets the counter local service.
    void
    setTeamFinder(com.liferay.portal.kernel.service.persistence.TeamFinder teamFinder)
    Sets the team finder.
    void
    setTeamLocalService(com.liferay.portal.kernel.service.TeamLocalService teamLocalService)
    Sets the team local service.
    void
    setTeamPersistence(com.liferay.portal.kernel.service.persistence.TeamPersistence teamPersistence)
    Sets the team persistence.
    void
    setTeamService(com.liferay.portal.kernel.service.TeamService teamService)
    Sets the team 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.portal.kernel.service.TeamService

    addTeam, deleteTeam, getGroupTeams, getTeam, getTeam, getUserTeams, getUserTeams, hasUserTeam, search, searchCount, updateTeam
  • Field Details

    • teamLocalService

      @BeanReference(type=com.liferay.portal.kernel.service.TeamLocalService.class) protected com.liferay.portal.kernel.service.TeamLocalService teamLocalService
    • teamService

      @BeanReference(type=com.liferay.portal.kernel.service.TeamService.class) protected com.liferay.portal.kernel.service.TeamService teamService
    • teamPersistence

      @BeanReference(type=com.liferay.portal.kernel.service.persistence.TeamPersistence.class) protected com.liferay.portal.kernel.service.persistence.TeamPersistence teamPersistence
    • teamFinder

      @BeanReference(type=com.liferay.portal.kernel.service.persistence.TeamFinder.class) protected com.liferay.portal.kernel.service.persistence.TeamFinder teamFinder
    • counterLocalService

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

      @BeanReference(type=com.liferay.portal.kernel.service.persistence.UserPersistence.class) protected com.liferay.portal.kernel.service.persistence.UserPersistence userPersistence
    • userGroupPersistence

      @BeanReference(type=com.liferay.portal.kernel.service.persistence.UserGroupPersistence.class) protected com.liferay.portal.kernel.service.persistence.UserGroupPersistence userGroupPersistence
  • Constructor Details

    • TeamServiceBaseImpl

      public TeamServiceBaseImpl()
  • Method Details

    • getTeamLocalService

      public com.liferay.portal.kernel.service.TeamLocalService getTeamLocalService()
      Returns the team local service.
      Returns:
      the team local service
    • setTeamLocalService

      public void setTeamLocalService(com.liferay.portal.kernel.service.TeamLocalService teamLocalService)
      Sets the team local service.
      Parameters:
      teamLocalService - the team local service
    • getTeamService

      public com.liferay.portal.kernel.service.TeamService getTeamService()
      Returns the team remote service.
      Returns:
      the team remote service
    • setTeamService

      public void setTeamService(com.liferay.portal.kernel.service.TeamService teamService)
      Sets the team remote service.
      Parameters:
      teamService - the team remote service
    • getTeamPersistence

      public com.liferay.portal.kernel.service.persistence.TeamPersistence getTeamPersistence()
      Returns the team persistence.
      Returns:
      the team persistence
    • setTeamPersistence

      public void setTeamPersistence(com.liferay.portal.kernel.service.persistence.TeamPersistence teamPersistence)
      Sets the team persistence.
      Parameters:
      teamPersistence - the team persistence
    • getTeamFinder

      public com.liferay.portal.kernel.service.persistence.TeamFinder getTeamFinder()
      Returns the team finder.
      Returns:
      the team finder
    • setTeamFinder

      public void setTeamFinder(com.liferay.portal.kernel.service.persistence.TeamFinder teamFinder)
      Sets the team finder.
      Parameters:
      teamFinder - the team 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.portal.kernel.service.TeamService
      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