Liferay 6.0.5

Uses of Interface
com.liferay.portal.model.Team

Packages that use Team
com.liferay.portal.model   
com.liferay.portal.model.impl   
com.liferay.portal.service   
com.liferay.portal.service.base   
com.liferay.portal.service.http   
com.liferay.portal.service.impl   
com.liferay.portal.service.permission   
com.liferay.portal.service.persistence   
com.liferay.portlet.enterpriseadmin.search   
 

Uses of Team in com.liferay.portal.model
 

Classes in com.liferay.portal.model that implement Team
 class TeamWrapper
           This class is a wrapper for Team.
 

Methods in com.liferay.portal.model that return Team
 Team TeamWrapper.getWrappedTeam()
           
 Team TeamWrapper.toEscapedModel()
           
 Team TeamModel.toEscapedModel()
          Gets a copy of this team as an escaped model instance by wrapping it with an AutoEscapeBeanHandler.
 

Methods in com.liferay.portal.model that return types with arguments of type Team
 List<Team> UserWrapper.getTeams()
           
 List<Team> User.getTeams()
           
 

Methods in com.liferay.portal.model with parameters of type Team
 int TeamWrapper.compareTo(Team team)
           
 int TeamModel.compareTo(Team team)
           
static TeamSoap TeamSoap.toSoapModel(Team model)
           
static TeamSoap[] TeamSoap.toSoapModels(Team[] models)
           
static TeamSoap[][] TeamSoap.toSoapModels(Team[][] models)
           
 

Method parameters in com.liferay.portal.model with type arguments of type Team
static TeamSoap[] TeamSoap.toSoapModels(List<Team> models)
           
 

Constructors in com.liferay.portal.model with parameters of type Team
TeamWrapper(Team team)
           
 

Uses of Team in com.liferay.portal.model.impl
 

Classes in com.liferay.portal.model.impl that implement Team
 class TeamImpl
           
 

Methods in com.liferay.portal.model.impl that return Team
 Team TeamModelImpl.toEscapedModel()
           
static Team TeamModelImpl.toModel(TeamSoap soapModel)
          Converts the soap model instance into a normal model instance.
 

Methods in com.liferay.portal.model.impl that return types with arguments of type Team
 List<Team> UserImpl.getTeams()
           
static List<Team> TeamModelImpl.toModels(TeamSoap[] soapModels)
          Converts the soap model instances into normal model instances.
 

Methods in com.liferay.portal.model.impl with parameters of type Team
 int TeamModelImpl.compareTo(Team team)
           
 

Uses of Team in com.liferay.portal.service
 

Methods in com.liferay.portal.service that return Team
 Team TeamLocalServiceWrapper.addTeam(long userId, long groupId, String name, String description)
           
static Team TeamLocalServiceUtil.addTeam(long userId, long groupId, String name, String description)
           
 Team TeamLocalService.addTeam(long userId, long groupId, String name, String description)
           
 Team TeamServiceWrapper.addTeam(long groupId, String name, String description)
           
static Team TeamServiceUtil.addTeam(long groupId, String name, String description)
           
 Team TeamService.addTeam(long groupId, String name, String description)
           
 Team TeamLocalServiceWrapper.addTeam(Team team)
          Adds the team to the database.
static Team TeamLocalServiceUtil.addTeam(Team team)
          Adds the team to the database.
 Team TeamLocalService.addTeam(Team team)
          Adds the team to the database.
 Team TeamLocalServiceWrapper.createTeam(long teamId)
          Creates a new team with the primary key.
static Team TeamLocalServiceUtil.createTeam(long teamId)
          Creates a new team with the primary key.
 Team TeamLocalService.createTeam(long teamId)
          Creates a new team with the primary key.
 Team TeamLocalServiceWrapper.getTeam(long teamId)
          Gets the team with the primary key.
static Team TeamLocalServiceUtil.getTeam(long teamId)
          Gets the team with the primary key.
 Team TeamLocalService.getTeam(long teamId)
          Gets the team with the primary key.
 Team TeamServiceWrapper.updateTeam(long teamId, String name, String description)
           
static Team TeamServiceUtil.updateTeam(long teamId, String name, String description)
           
 Team TeamService.updateTeam(long teamId, String name, String description)
           
 Team TeamLocalServiceWrapper.updateTeam(long teamId, String name, String description)
           
static Team TeamLocalServiceUtil.updateTeam(long teamId, String name, String description)
           
 Team TeamLocalService.updateTeam(long teamId, String name, String description)
           
 Team TeamLocalServiceWrapper.updateTeam(Team team)
          Updates the team in the database.
static Team TeamLocalServiceUtil.updateTeam(Team team)
          Updates the team in the database.
 Team TeamLocalService.updateTeam(Team team)
          Updates the team in the database.
 Team TeamLocalServiceWrapper.updateTeam(Team team, boolean merge)
          Updates the team in the database.
static Team TeamLocalServiceUtil.updateTeam(Team team, boolean merge)
          Updates the team in the database.
 Team TeamLocalService.updateTeam(Team team, boolean merge)
          Updates the team in the database.
 

Methods in com.liferay.portal.service that return types with arguments of type Team
 List<Team> TeamLocalServiceWrapper.getGroupTeams(long groupId)
           
static List<Team> TeamLocalServiceUtil.getGroupTeams(long groupId)
           
 List<Team> TeamLocalService.getGroupTeams(long groupId)
           
 List<Team> TeamLocalServiceWrapper.getTeams(int start, int end)
          Gets a range of all the teams.
static List<Team> TeamLocalServiceUtil.getTeams(int start, int end)
          Gets a range of all the teams.
 List<Team> TeamLocalService.getTeams(int start, int end)
          Gets a range of all the teams.
 List<Team> TeamLocalServiceWrapper.getUserTeams(long userId)
           
static List<Team> TeamLocalServiceUtil.getUserTeams(long userId)
           
 List<Team> TeamLocalService.getUserTeams(long userId)
           
 List<Team> TeamLocalServiceWrapper.getUserTeams(long userId, long groupId)
           
static List<Team> TeamLocalServiceUtil.getUserTeams(long userId, long groupId)
           
 List<Team> TeamLocalService.getUserTeams(long userId, long groupId)
           
 List<Team> TeamLocalServiceWrapper.search(long groupId, String name, String description, LinkedHashMap<String,Object> params, int start, int end, OrderByComparator obc)
           
static List<Team> TeamLocalServiceUtil.search(long groupId, String name, String description, LinkedHashMap<String,Object> params, int start, int end, OrderByComparator obc)
           
 List<Team> TeamLocalService.search(long groupId, String name, String description, LinkedHashMap<String,Object> params, int start, int end, OrderByComparator obc)
           
 

Methods in com.liferay.portal.service with parameters of type Team
 Team TeamLocalServiceWrapper.addTeam(Team team)
          Adds the team to the database.
static Team TeamLocalServiceUtil.addTeam(Team team)
          Adds the team to the database.
 Team TeamLocalService.addTeam(Team team)
          Adds the team to the database.
 void TeamLocalServiceWrapper.deleteTeam(Team team)
          Deletes the team from the database.
static void TeamLocalServiceUtil.deleteTeam(Team team)
          Deletes the team from the database.
 void TeamLocalService.deleteTeam(Team team)
          Deletes the team from the database.
 Team TeamLocalServiceWrapper.updateTeam(Team team)
          Updates the team in the database.
static Team TeamLocalServiceUtil.updateTeam(Team team)
          Updates the team in the database.
 Team TeamLocalService.updateTeam(Team team)
          Updates the team in the database.
 Team TeamLocalServiceWrapper.updateTeam(Team team, boolean merge)
          Updates the team in the database.
static Team TeamLocalServiceUtil.updateTeam(Team team, boolean merge)
          Updates the team in the database.
 Team TeamLocalService.updateTeam(Team team, boolean merge)
          Updates the team in the database.
 

Uses of Team in com.liferay.portal.service.base
 

Methods in com.liferay.portal.service.base that return Team
 Team TeamLocalServiceBaseImpl.addTeam(Team team)
          Adds the team to the database.
 Team TeamLocalServiceBaseImpl.createTeam(long teamId)
          Creates a new team with the primary key.
 Team TeamLocalServiceBaseImpl.getTeam(long teamId)
          Gets the team with the primary key.
 Team TeamLocalServiceBaseImpl.updateTeam(Team team)
          Updates the team in the database.
 Team TeamLocalServiceBaseImpl.updateTeam(Team team, boolean merge)
          Updates the team in the database.
 

Methods in com.liferay.portal.service.base that return types with arguments of type Team
 List<Team> TeamLocalServiceBaseImpl.getTeams(int start, int end)
          Gets a range of all the teams.
 

Methods in com.liferay.portal.service.base with parameters of type Team
 Team TeamLocalServiceBaseImpl.addTeam(Team team)
          Adds the team to the database.
 void TeamLocalServiceBaseImpl.deleteTeam(Team team)
          Deletes the team from the database.
 Team TeamLocalServiceBaseImpl.updateTeam(Team team)
          Updates the team in the database.
 Team TeamLocalServiceBaseImpl.updateTeam(Team team, boolean merge)
          Updates the team in the database.
 

Uses of Team in com.liferay.portal.service.http
 

Methods in com.liferay.portal.service.http that return Team
static Team TeamServiceHttp.addTeam(HttpPrincipal httpPrincipal, long groupId, String name, String description)
           
static Team TeamServiceHttp.updateTeam(HttpPrincipal httpPrincipal, long teamId, String name, String description)
           
 

Methods in com.liferay.portal.service.http with parameters of type Team
static JSONArray TeamJSONSerializer.toJSONArray(Team[] models)
           
static JSONArray TeamJSONSerializer.toJSONArray(Team[][] models)
           
static JSONObject TeamJSONSerializer.toJSONObject(Team model)
           
 

Method parameters in com.liferay.portal.service.http with type arguments of type Team
static JSONArray TeamJSONSerializer.toJSONArray(List<Team> models)
           
 

Uses of Team in com.liferay.portal.service.impl
 

Methods in com.liferay.portal.service.impl that return Team
 Team TeamLocalServiceImpl.addTeam(long userId, long groupId, String name, String description)
           
 Team TeamServiceImpl.addTeam(long groupId, String name, String description)
           
 Team TeamLocalServiceImpl.getTeam(long teamId)
           
 Team TeamServiceImpl.updateTeam(long teamId, String name, String description)
           
 Team TeamLocalServiceImpl.updateTeam(long teamId, String name, String description)
           
 

Methods in com.liferay.portal.service.impl that return types with arguments of type Team
 List<Team> TeamLocalServiceImpl.getGroupTeams(long groupId)
           
 List<Team> TeamLocalServiceImpl.getUserTeams(long userId)
           
 List<Team> TeamLocalServiceImpl.getUserTeams(long userId, long groupId)
           
 List<Team> TeamLocalServiceImpl.search(long groupId, String name, String description, LinkedHashMap<String,Object> params, int start, int end, OrderByComparator obc)
           
 

Uses of Team in com.liferay.portal.service.permission
 

Methods in com.liferay.portal.service.permission with parameters of type Team
static void TeamPermissionUtil.check(PermissionChecker permissionChecker, Team team, String actionId)
           
 void TeamPermission.check(PermissionChecker permissionChecker, Team team, String actionId)
           
 void TeamPermissionImpl.check(PermissionChecker permissionChecker, Team team, String actionId)
           
static boolean TeamPermissionUtil.contains(PermissionChecker permissionChecker, Team team, String actionId)
           
 boolean TeamPermission.contains(PermissionChecker permissionChecker, Team team, String actionId)
           
 boolean TeamPermissionImpl.contains(PermissionChecker permissionChecker, Team team, String actionId)
           
 

Uses of Team in com.liferay.portal.service.persistence
 

Methods in com.liferay.portal.service.persistence that return Team
static Team TeamUtil.create(long teamId)
          Creates a new team with the primary key.
 Team TeamPersistence.create(long teamId)
          Creates a new team with the primary key.
 Team TeamPersistenceImpl.create(long teamId)
          Creates a new team with the primary key.
static Team TeamUtil.fetchByG_N(long groupId, String name)
          Finds the team where groupId = ? and name = ? or returns null if it could not be found.
 Team TeamPersistence.fetchByG_N(long groupId, String name)
          Finds the team where groupId = ? and name = ? or returns null if it could not be found.
 Team TeamPersistenceImpl.fetchByG_N(long groupId, String name)
          Finds the team where groupId = ? and name = ? or returns null if it could not be found.
static Team TeamUtil.fetchByG_N(long groupId, String name, boolean retrieveFromCache)
          Finds the team where groupId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.
 Team TeamPersistence.fetchByG_N(long groupId, String name, boolean retrieveFromCache)
          Finds the team where groupId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.
 Team TeamPersistenceImpl.fetchByG_N(long groupId, String name, boolean retrieveFromCache)
          Finds the team where groupId = ? and name = ? or returns null if it could not be found, optionally using the finder cache.
static Team TeamUtil.fetchByPrimaryKey(long teamId)
          Finds the team with the primary key or returns null if it could not be found.
 Team TeamPersistence.fetchByPrimaryKey(long teamId)
          Finds the team with the primary key or returns null if it could not be found.
 Team TeamPersistenceImpl.fetchByPrimaryKey(long teamId)
          Finds the team with the primary key or returns null if it could not be found.
 Team TeamPersistenceImpl.fetchByPrimaryKey(Serializable primaryKey)
          Finds the team with the primary key or returns null if it could not be found.
static Team TeamUtil.findByG_N(long groupId, String name)
          Finds the team where groupId = ? and name = ? or throws a NoSuchTeamException if it could not be found.
 Team TeamPersistence.findByG_N(long groupId, String name)
          Finds the team where groupId = ? and name = ? or throws a NoSuchTeamException if it could not be found.
 Team TeamPersistenceImpl.findByG_N(long groupId, String name)
          Finds the team where groupId = ? and name = ? or throws a NoSuchTeamException if it could not be found.
static Team TeamUtil.findByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Finds the first team in the ordered set where groupId = ?.
 Team TeamPersistence.findByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Finds the first team in the ordered set where groupId = ?.
 Team TeamPersistenceImpl.findByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Finds the first team in the ordered set where groupId = ?.
static Team TeamUtil.findByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Finds the last team in the ordered set where groupId = ?.
 Team TeamPersistence.findByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Finds the last team in the ordered set where groupId = ?.
 Team TeamPersistenceImpl.findByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Finds the last team in the ordered set where groupId = ?.
static Team[] TeamUtil.findByGroupId_PrevAndNext(long teamId, long groupId, OrderByComparator orderByComparator)
          Finds the teams before and after the current team in the ordered set where groupId = ?.
 Team[] TeamPersistence.findByGroupId_PrevAndNext(long teamId, long groupId, OrderByComparator orderByComparator)
          Finds the teams before and after the current team in the ordered set where groupId = ?.
 Team[] TeamPersistenceImpl.findByGroupId_PrevAndNext(long teamId, long groupId, OrderByComparator orderByComparator)
          Finds the teams before and after the current team in the ordered set where groupId = ?.
static Team TeamUtil.findByPrimaryKey(long teamId)
          Finds the team with the primary key or throws a NoSuchTeamException if it could not be found.
 Team TeamPersistence.findByPrimaryKey(long teamId)
          Finds the team with the primary key or throws a NoSuchTeamException if it could not be found.
 Team TeamPersistenceImpl.findByPrimaryKey(long teamId)
          Finds the team with the primary key or throws a NoSuchTeamException if it could not be found.
 Team TeamPersistenceImpl.findByPrimaryKey(Serializable primaryKey)
          Finds the team with the primary key or throws a NoSuchModelException if it could not be found.
protected  Team TeamPersistenceImpl.getByGroupId_PrevAndNext(Session session, Team team, long groupId, OrderByComparator orderByComparator, boolean previous)
           
static Team TeamUtil.remove(long teamId)
          Removes the team with the primary key from the database.
 Team TeamPersistence.remove(long teamId)
          Removes the team with the primary key from the database.
 Team TeamPersistenceImpl.remove(long teamId)
          Removes the team with the primary key from the database.
 Team TeamPersistenceImpl.remove(Serializable primaryKey)
          Removes the team with the primary key from the database.
static Team TeamUtil.remove(Team team)
           
protected  Team TeamPersistenceImpl.removeImpl(Team team)
           
protected  Team TeamPersistenceImpl.toUnwrappedModel(Team team)
           
static Team TeamUtil.update(Team team, boolean merge)
           
static Team TeamUtil.update(Team team, boolean merge, ServiceContext serviceContext)
           
static Team TeamUtil.updateImpl(Team team, boolean merge)
           
 Team TeamPersistence.updateImpl(Team team, boolean merge)
           
 Team TeamPersistenceImpl.updateImpl(Team team, boolean merge)
           
 

Methods in com.liferay.portal.service.persistence that return types with arguments of type Team
static List<Team> TeamUtil.filterFindByGroupId(long groupId)
          Filters by the user's permissions and finds all the teams where groupId = ?.
 List<Team> TeamPersistence.filterFindByGroupId(long groupId)
          Filters by the user's permissions and finds all the teams where groupId = ?.
 List<Team> TeamPersistenceImpl.filterFindByGroupId(long groupId)
          Filters by the user's permissions and finds all the teams where groupId = ?.
static List<Team> TeamUtil.filterFindByGroupId(long groupId, int start, int end)
          Filters by the user's permissions and finds a range of all the teams where groupId = ?.
 List<Team> TeamPersistence.filterFindByGroupId(long groupId, int start, int end)
          Filters by the user's permissions and finds a range of all the teams where groupId = ?.
 List<Team> TeamPersistenceImpl.filterFindByGroupId(long groupId, int start, int end)
          Filters by the user's permissions and finds a range of all the teams where groupId = ?.
static List<Team> TeamUtil.filterFindByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the teams where groupId = ?.
 List<Team> TeamPersistence.filterFindByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the teams where groupId = ?.
 List<Team> TeamPersistenceImpl.filterFindByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Filters by the user's permissions and finds an ordered range of all the teams where groupId = ?.
static List<Team> TeamUtil.findAll()
          Finds all the teams.
 List<Team> TeamPersistence.findAll()
          Finds all the teams.
 List<Team> TeamPersistenceImpl.findAll()
          Finds all the teams.
static List<Team> TeamUtil.findAll(int start, int end)
          Finds a range of all the teams.
 List<Team> TeamPersistence.findAll(int start, int end)
          Finds a range of all the teams.
 List<Team> TeamPersistenceImpl.findAll(int start, int end)
          Finds a range of all the teams.
static List<Team> TeamUtil.findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the teams.
 List<Team> TeamPersistence.findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the teams.
 List<Team> TeamPersistenceImpl.findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the teams.
static List<Team> TeamFinderUtil.findByG_N_D(long groupId, String name, String description, LinkedHashMap<String,Object> params, int start, int end, OrderByComparator obc)
           
 List<Team> TeamFinder.findByG_N_D(long groupId, String name, String description, LinkedHashMap<String,Object> params, int start, int end, OrderByComparator obc)
           
 List<Team> TeamFinderImpl.findByG_N_D(long groupId, String name, String description, LinkedHashMap<String,Object> params, int start, int end, OrderByComparator obc)
           
static List<Team> TeamUtil.findByGroupId(long groupId)
          Finds all the teams where groupId = ?.
 List<Team> TeamPersistence.findByGroupId(long groupId)
          Finds all the teams where groupId = ?.
 List<Team> TeamPersistenceImpl.findByGroupId(long groupId)
          Finds all the teams where groupId = ?.
static List<Team> TeamUtil.findByGroupId(long groupId, int start, int end)
          Finds a range of all the teams where groupId = ?.
 List<Team> TeamPersistence.findByGroupId(long groupId, int start, int end)
          Finds a range of all the teams where groupId = ?.
 List<Team> TeamPersistenceImpl.findByGroupId(long groupId, int start, int end)
          Finds a range of all the teams where groupId = ?.
static List<Team> TeamUtil.findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the teams where groupId = ?.
 List<Team> TeamPersistence.findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the teams where groupId = ?.
 List<Team> TeamPersistenceImpl.findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the teams where groupId = ?.
static List<Team> TeamUtil.findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<Team> TeamUtil.findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<Team> TeamUtil.findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static List<Team> UserUtil.getTeams(long pk)
          Gets all the teams associated with the user.
 List<Team> UserPersistence.getTeams(long pk)
          Gets all the teams associated with the user.
 List<Team> UserPersistenceImpl.getTeams(long pk)
          Gets all the teams associated with the user.
static List<Team> UserUtil.getTeams(long pk, int start, int end)
          Gets a range of all the teams associated with the user.
 List<Team> UserPersistence.getTeams(long pk, int start, int end)
          Gets a range of all the teams associated with the user.
 List<Team> UserPersistenceImpl.getTeams(long pk, int start, int end)
          Gets a range of all the teams associated with the user.
static List<Team> UserUtil.getTeams(long pk, int start, int end, OrderByComparator orderByComparator)
          Gets an ordered range of all the teams associated with the user.
 List<Team> UserPersistence.getTeams(long pk, int start, int end, OrderByComparator orderByComparator)
          Gets an ordered range of all the teams associated with the user.
 List<Team> UserPersistenceImpl.getTeams(long pk, int start, int end, OrderByComparator orderByComparator)
          Gets an ordered range of all the teams associated with the user.
 

Methods in com.liferay.portal.service.persistence with parameters of type Team
static void UserUtil.addTeam(long pk, Team team)
          Adds an association between the user and the team.
 void UserPersistence.addTeam(long pk, Team team)
          Adds an association between the user and the team.
 void UserPersistenceImpl.addTeam(long pk, Team team)
          Adds an association between the user and the team.
static void TeamUtil.cacheResult(Team team)
          Caches the team in the entity cache if it is enabled.
 void TeamPersistence.cacheResult(Team team)
          Caches the team in the entity cache if it is enabled.
 void TeamPersistenceImpl.cacheResult(Team team)
          Caches the team in the entity cache if it is enabled.
static void TeamUtil.clearCache(Team team)
           
 void TeamPersistenceImpl.clearCache(Team team)
          Clears the cache for the team.
protected  Team TeamPersistenceImpl.getByGroupId_PrevAndNext(Session session, Team team, long groupId, OrderByComparator orderByComparator, boolean previous)
           
static Team TeamUtil.remove(Team team)
           
protected  Team TeamPersistenceImpl.removeImpl(Team team)
           
static void UserUtil.removeTeam(long pk, Team team)
          Removes the association between the user and the team.
 void UserPersistence.removeTeam(long pk, Team team)
          Removes the association between the user and the team.
 void UserPersistenceImpl.removeTeam(long pk, Team team)
          Removes the association between the user and the team.
protected  Team TeamPersistenceImpl.toUnwrappedModel(Team team)
           
static Team TeamUtil.update(Team team, boolean merge)
           
static Team TeamUtil.update(Team team, boolean merge, ServiceContext serviceContext)
           
static Team TeamUtil.updateImpl(Team team, boolean merge)
           
 Team TeamPersistence.updateImpl(Team team, boolean merge)
           
 Team TeamPersistenceImpl.updateImpl(Team team, boolean merge)
           
 

Method parameters in com.liferay.portal.service.persistence with type arguments of type Team
static void UserUtil.addTeams(long pk, List<Team> teams)
          Adds an association between the user and the teams.
 void UserPersistence.addTeams(long pk, List<Team> teams)
          Adds an association between the user and the teams.
 void UserPersistenceImpl.addTeams(long pk, List<Team> teams)
          Adds an association between the user and the teams.
static void TeamUtil.cacheResult(List<Team> teams)
          Caches the teams in the entity cache if it is enabled.
 void TeamPersistence.cacheResult(List<Team> teams)
          Caches the teams in the entity cache if it is enabled.
 void TeamPersistenceImpl.cacheResult(List<Team> teams)
          Caches the teams in the entity cache if it is enabled.
static void UserUtil.removeTeams(long pk, List<Team> teams)
          Removes the association between the user and the teams.
 void UserPersistence.removeTeams(long pk, List<Team> teams)
          Removes the association between the user and the teams.
 void UserPersistenceImpl.removeTeams(long pk, List<Team> teams)
          Removes the association between the user and the teams.
static void UserUtil.setTeams(long pk, List<Team> teams)
          Sets the teams associated with the user, removing and adding associations as necessary.
 void UserPersistence.setTeams(long pk, List<Team> teams)
          Sets the teams associated with the user, removing and adding associations as necessary.
 void UserPersistenceImpl.setTeams(long pk, List<Team> teams)
          Sets the teams associated with the user, removing and adding associations as necessary.
 

Uses of Team in com.liferay.portlet.enterpriseadmin.search
 

Constructors in com.liferay.portlet.enterpriseadmin.search with parameters of type Team
UserTeamChecker(RenderResponse renderResponse, Team team)
           
 


Liferay 6.0.5