Liferay 6.1.2-ce-ga3

com.liferay.portal.service
Interface TeamLocalService

All Superinterfaces:
BaseLocalService, PersistedModelLocalService
All Known Implementing Classes:
TeamLocalServiceBaseImpl, TeamLocalServiceImpl, TeamLocalServiceWrapper

@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface TeamLocalService
extends BaseLocalService, PersistedModelLocalService

The interface for the team local service.

This is a local service. 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.

See Also:
TeamLocalServiceUtil, TeamLocalServiceBaseImpl, TeamLocalServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
 Team addTeam(long userId, long groupId, String name, String description)
           
 Team addTeam(Team team)
          Adds the team to the database.
 void addUserGroupTeam(long userGroupId, long teamId)
           
 void addUserGroupTeam(long userGroupId, Team team)
           
 void addUserGroupTeams(long userGroupId, List<Team> Teams)
           
 void addUserGroupTeams(long userGroupId, long[] teamIds)
           
 void addUserTeam(long userId, long teamId)
           
 void addUserTeam(long userId, Team team)
           
 void addUserTeams(long userId, List<Team> Teams)
           
 void addUserTeams(long userId, long[] teamIds)
           
 void clearUserGroupTeams(long userGroupId)
           
 void clearUserTeams(long userId)
           
 Team createTeam(long teamId)
          Creates a new team with the primary key.
 Team deleteTeam(long teamId)
          Deletes the team with the primary key from the database.
 Team deleteTeam(Team team)
          Deletes the team from the database.
 void deleteTeams(long groupId)
           
 void deleteUserGroupTeam(long userGroupId, long teamId)
           
 void deleteUserGroupTeam(long userGroupId, Team team)
           
 void deleteUserGroupTeams(long userGroupId, List<Team> Teams)
           
 void deleteUserGroupTeams(long userGroupId, long[] teamIds)
           
 void deleteUserTeam(long userId, long teamId)
           
 void deleteUserTeam(long userId, Team team)
           
 void deleteUserTeams(long userId, List<Team> Teams)
           
 void deleteUserTeams(long userId, long[] teamIds)
           
 DynamicQuery dynamicQuery()
           
 List dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
          Performs a dynamic query on the database and returns an ordered range of the matching rows.
 long dynamicQueryCount(DynamicQuery dynamicQuery)
          Returns the number of rows that match the dynamic query.
 Team fetchTeam(long teamId)
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 List<Team> getGroupTeams(long groupId)
           
 PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
 Team getTeam(long teamId)
          Returns the team with the primary key.
 Team getTeam(long groupId, String name)
           
 List<Team> getTeams(int start, int end)
          Returns a range of all the teams.
 int getTeamsCount()
          Returns the number of teams.
 List<Team> getUserGroupTeams(long userGroupId)
           
 List<Team> getUserGroupTeams(long userGroupId, int start, int end)
           
 List<Team> getUserGroupTeams(long userGroupId, int start, int end, OrderByComparator orderByComparator)
           
 int getUserGroupTeamsCount(long userGroupId)
           
 List<Team> getUserTeams(long userId)
           
 List<Team> getUserTeams(long userId, int start, int end)
           
 List<Team> getUserTeams(long userId, int start, int end, OrderByComparator orderByComparator)
           
 List<Team> getUserTeams(long userId, long groupId)
           
 int getUserTeamsCount(long userId)
           
 boolean hasUserGroupTeam(long userGroupId, long teamId)
           
 boolean hasUserGroupTeams(long userGroupId)
           
 boolean hasUserTeam(long userId, long teamId)
           
 boolean hasUserTeams(long userId)
           
 List<Team> search(long groupId, String name, String description, LinkedHashMap<String,Object> params, int start, int end, OrderByComparator obc)
           
 int searchCount(long groupId, String name, String description, LinkedHashMap<String,Object> params)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setUserGroupTeams(long userGroupId, long[] teamIds)
           
 void setUserTeams(long userId, long[] teamIds)
           
 Team updateTeam(long teamId, String name, String description)
           
 Team updateTeam(Team team)
          Updates the team in the database or adds it if it does not yet exist.
 Team updateTeam(Team team, boolean merge)
          Updates the team in the database or adds it if it does not yet exist.
 

Method Detail

addTeam

Team addTeam(Team team)
             throws SystemException
Adds the team to the database. Also notifies the appropriate model listeners.

Parameters:
team - the team
Returns:
the team that was added
Throws:
SystemException - if a system exception occurred

createTeam

Team createTeam(long teamId)
Creates a new team with the primary key. Does not add the team to the database.

Parameters:
teamId - the primary key for the new team
Returns:
the new team

deleteTeam

Team deleteTeam(long teamId)
                throws PortalException,
                       SystemException
Deletes the team with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
teamId - the primary key of the team
Returns:
the team that was removed
Throws:
PortalException - if a team with the primary key could not be found
SystemException - if a system exception occurred

deleteTeam

Team deleteTeam(Team team)
                throws PortalException,
                       SystemException
Deletes the team from the database. Also notifies the appropriate model listeners.

Parameters:
team - the team
Returns:
the team that was removed
Throws:
PortalException
SystemException - if a system exception occurred

dynamicQuery

DynamicQuery dynamicQuery()

dynamicQuery

List dynamicQuery(DynamicQuery dynamicQuery)
                  throws SystemException
Performs a dynamic query on the database and returns the matching rows.

Parameters:
dynamicQuery - the dynamic query
Returns:
the matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

List dynamicQuery(DynamicQuery dynamicQuery,
                  int start,
                  int end)
                  throws SystemException
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 QueryUtil.ALL_POS will return the full result set.

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
Throws:
SystemException - if a system exception occurred

dynamicQuery

List dynamicQuery(DynamicQuery dynamicQuery,
                  int start,
                  int end,
                  OrderByComparator orderByComparator)
                  throws SystemException
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 QueryUtil.ALL_POS will return the full result set.

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
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

long dynamicQueryCount(DynamicQuery dynamicQuery)
                       throws SystemException
Returns the number of rows that match the dynamic query.

Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

fetchTeam

@Transactional(propagation=SUPPORTS,
               readOnly=true)
Team fetchTeam(long teamId)
               throws SystemException
Throws:
SystemException

getTeam

@Transactional(propagation=SUPPORTS,
               readOnly=true)
Team getTeam(long teamId)
             throws PortalException,
                    SystemException
Returns the team with the primary key.

Parameters:
teamId - the primary key of the team
Returns:
the team
Throws:
PortalException - if a team with the primary key could not be found
SystemException - if a system exception occurred

getPersistedModel

@Transactional(propagation=SUPPORTS,
               readOnly=true)
PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                 throws PortalException,
                                        SystemException
Specified by:
getPersistedModel in interface PersistedModelLocalService
Throws:
PortalException
SystemException

getTeams

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<Team> getTeams(int start,
                                                             int end)
                    throws SystemException
Returns a range of all the teams.

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:
start - the lower bound of the range of teams
end - the upper bound of the range of teams (not inclusive)
Returns:
the range of teams
Throws:
SystemException - if a system exception occurred

getTeamsCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getTeamsCount()
                  throws SystemException
Returns the number of teams.

Returns:
the number of teams
Throws:
SystemException - if a system exception occurred

updateTeam

Team updateTeam(Team team)
                throws SystemException
Updates the team in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Parameters:
team - the team
Returns:
the team that was updated
Throws:
SystemException - if a system exception occurred

updateTeam

Team updateTeam(Team team,
                boolean merge)
                throws SystemException
Updates the team in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Parameters:
team - the team
merge - whether to merge the team with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
Returns:
the team that was updated
Throws:
SystemException - if a system exception occurred

addUserTeam

void addUserTeam(long userId,
                 long teamId)
                 throws SystemException
Throws:
SystemException - if a system exception occurred

addUserTeam

void addUserTeam(long userId,
                 Team team)
                 throws SystemException
Throws:
SystemException - if a system exception occurred

addUserTeams

void addUserTeams(long userId,
                  long[] teamIds)
                  throws SystemException
Throws:
SystemException - if a system exception occurred

addUserTeams

void addUserTeams(long userId,
                  List<Team> Teams)
                  throws SystemException
Throws:
SystemException - if a system exception occurred

clearUserTeams

void clearUserTeams(long userId)
                    throws SystemException
Throws:
SystemException - if a system exception occurred

deleteUserTeam

void deleteUserTeam(long userId,
                    long teamId)
                    throws SystemException
Throws:
SystemException - if a system exception occurred

deleteUserTeam

void deleteUserTeam(long userId,
                    Team team)
                    throws SystemException
Throws:
SystemException - if a system exception occurred

deleteUserTeams

void deleteUserTeams(long userId,
                     long[] teamIds)
                     throws SystemException
Throws:
SystemException - if a system exception occurred

deleteUserTeams

void deleteUserTeams(long userId,
                     List<Team> Teams)
                     throws SystemException
Throws:
SystemException - if a system exception occurred

getUserTeams

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<Team> getUserTeams(long userId)
                        throws SystemException
Throws:
SystemException - if a system exception occurred

getUserTeams

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<Team> getUserTeams(long userId,
                                                                 int start,
                                                                 int end)
                        throws SystemException
Throws:
SystemException - if a system exception occurred

getUserTeams

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<Team> getUserTeams(long userId,
                                                                 int start,
                                                                 int end,
                                                                 OrderByComparator orderByComparator)
                        throws SystemException
Throws:
SystemException - if a system exception occurred

getUserTeamsCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getUserTeamsCount(long userId)
                      throws SystemException
Throws:
SystemException - if a system exception occurred

hasUserTeam

@Transactional(propagation=SUPPORTS,
               readOnly=true)
boolean hasUserTeam(long userId,
                                                             long teamId)
                    throws SystemException
Throws:
SystemException - if a system exception occurred

hasUserTeams

@Transactional(propagation=SUPPORTS,
               readOnly=true)
boolean hasUserTeams(long userId)
                     throws SystemException
Throws:
SystemException - if a system exception occurred

setUserTeams

void setUserTeams(long userId,
                  long[] teamIds)
                  throws SystemException
Throws:
SystemException - if a system exception occurred

addUserGroupTeam

void addUserGroupTeam(long userGroupId,
                      long teamId)
                      throws SystemException
Throws:
SystemException - if a system exception occurred

addUserGroupTeam

void addUserGroupTeam(long userGroupId,
                      Team team)
                      throws SystemException
Throws:
SystemException - if a system exception occurred

addUserGroupTeams

void addUserGroupTeams(long userGroupId,
                       long[] teamIds)
                       throws SystemException
Throws:
SystemException - if a system exception occurred

addUserGroupTeams

void addUserGroupTeams(long userGroupId,
                       List<Team> Teams)
                       throws SystemException
Throws:
SystemException - if a system exception occurred

clearUserGroupTeams

void clearUserGroupTeams(long userGroupId)
                         throws SystemException
Throws:
SystemException - if a system exception occurred

deleteUserGroupTeam

void deleteUserGroupTeam(long userGroupId,
                         long teamId)
                         throws SystemException
Throws:
SystemException - if a system exception occurred

deleteUserGroupTeam

void deleteUserGroupTeam(long userGroupId,
                         Team team)
                         throws SystemException
Throws:
SystemException - if a system exception occurred

deleteUserGroupTeams

void deleteUserGroupTeams(long userGroupId,
                          long[] teamIds)
                          throws SystemException
Throws:
SystemException - if a system exception occurred

deleteUserGroupTeams

void deleteUserGroupTeams(long userGroupId,
                          List<Team> Teams)
                          throws SystemException
Throws:
SystemException - if a system exception occurred

getUserGroupTeams

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<Team> getUserGroupTeams(long userGroupId)
                             throws SystemException
Throws:
SystemException - if a system exception occurred

getUserGroupTeams

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<Team> getUserGroupTeams(long userGroupId,
                                                                      int start,
                                                                      int end)
                             throws SystemException
Throws:
SystemException - if a system exception occurred

getUserGroupTeams

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<Team> getUserGroupTeams(long userGroupId,
                                                                      int start,
                                                                      int end,
                                                                      OrderByComparator orderByComparator)
                             throws SystemException
Throws:
SystemException - if a system exception occurred

getUserGroupTeamsCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getUserGroupTeamsCount(long userGroupId)
                           throws SystemException
Throws:
SystemException - if a system exception occurred

hasUserGroupTeam

@Transactional(propagation=SUPPORTS,
               readOnly=true)
boolean hasUserGroupTeam(long userGroupId,
                                                                  long teamId)
                         throws SystemException
Throws:
SystemException - if a system exception occurred

hasUserGroupTeams

@Transactional(propagation=SUPPORTS,
               readOnly=true)
boolean hasUserGroupTeams(long userGroupId)
                          throws SystemException
Throws:
SystemException - if a system exception occurred

setUserGroupTeams

void setUserGroupTeams(long userGroupId,
                       long[] teamIds)
                       throws SystemException
Throws:
SystemException - if a system exception occurred

getBeanIdentifier

String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Returns:
the Spring bean ID for this bean

setBeanIdentifier

void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Parameters:
beanIdentifier - the Spring bean ID for this bean

addTeam

Team addTeam(long userId,
             long groupId,
             String name,
             String description)
             throws PortalException,
                    SystemException
Throws:
PortalException
SystemException

deleteTeams

void deleteTeams(long groupId)
                 throws PortalException,
                        SystemException
Throws:
PortalException
SystemException

getGroupTeams

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<Team> getGroupTeams(long groupId)
                         throws SystemException
Throws:
SystemException

getTeam

@Transactional(propagation=SUPPORTS,
               readOnly=true)
Team getTeam(long groupId,
                                                      String name)
             throws PortalException,
                    SystemException
Throws:
PortalException
SystemException

getUserTeams

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<Team> getUserTeams(long userId,
                                                                 long groupId)
                        throws SystemException
Throws:
SystemException

search

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<Team> search(long groupId,
                                                           String name,
                                                           String description,
                                                           LinkedHashMap<String,Object> params,
                                                           int start,
                                                           int end,
                                                           OrderByComparator obc)
                  throws SystemException
Throws:
SystemException

searchCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int searchCount(long groupId,
                                                         String name,
                                                         String description,
                                                         LinkedHashMap<String,Object> params)
                throws SystemException
Throws:
SystemException

updateTeam

Team updateTeam(long teamId,
                String name,
                String description)
                throws PortalException,
                       SystemException
Throws:
PortalException
SystemException

Liferay 6.1.2-ce-ga3