Liferay 6.0.5

com.liferay.portal.service
Interface TeamService

All Known Implementing Classes:
TeamServiceBaseImpl, TeamServiceImpl, TeamServiceWrapper

@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface TeamService

The interface for the team remote service.

Never modify or reference this interface directly. Always use TeamServiceUtil to access the team remote service. Add custom service methods to TeamServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.

This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.

See Also:
TeamServiceUtil, TeamServiceBaseImpl, TeamServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 Team addTeam(long groupId, String name, String description)
           
 void deleteTeam(long teamId)
           
 Team updateTeam(long teamId, String name, String description)
           
 

Method Detail

addTeam

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

deleteTeam

void deleteTeam(long teamId)
                throws PortalException,
                       SystemException
Throws:
PortalException
SystemException

updateTeam

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

Liferay 6.0.5