public interface TeamServiceInterface extends Remote
| Modifier and Type | Method and Description |
|---|---|
Team |
createTeam(Team team)
Creates a new
Team. |
Team[] |
createTeams(Team[] teams)
Creates new
Team objects. |
Team |
getTeam(Long teamId)
Returns the
Team uniquely identified by the given ID. |
TeamPage |
getTeamsByStatement(Statement filterStatement)
|
Team |
updateTeam(Team team)
Updates the specified
Team. |
Team[] |
updateTeams(Team[] teams)
Updates the specified
Team objects. |
Team createTeam(Team team) throws RemoteException, ApiException
Team.
The following fields are required:
team - the team to createRemoteExceptionApiExceptionTeam[] createTeams(Team[] teams) throws RemoteException, ApiException
teams - the teams to createRemoteExceptionApiExceptionTeam getTeam(Long teamId) throws RemoteException, ApiException
Team uniquely identified by the given ID.teamId - the ID of the team, which must already existTeam uniquely identified by the given IDRemoteExceptionApiExceptionTeamPage getTeamsByStatement(Statement filterStatement) throws RemoteException, ApiException
TeamPage of Team objects that satisfy
the
given Statement.query. The following fields are supported
for
filtering:
| PQL Property | Object Property |
|---|---|
id |
Team.id |
name |
Team.name |
description |
Team.description |
filterStatement - a Publisher Query Language statement used to
filter
a set of teams.RemoteExceptionApiExceptionTeam updateTeam(Team team) throws RemoteException, ApiException
Team.team - the team to updateRemoteExceptionApiExceptionTeam[] updateTeams(Team[] teams) throws RemoteException, ApiException
Team objects.teams - the teams to updateRemoteExceptionApiExceptionCopyright © 2013. All Rights Reserved.