public interface ITeamAppSoap
| Modifier and Type | Method and Description |
|---|---|
TeamSoapDO |
createTeam(String sessionId,
String projectId,
String title,
String description,
String parentTeamId,
String teamOwnerUserName,
String[] memberUserNames)
Creates a new team
|
void |
deleteTeam(String sessionId,
String teamId)
Delete the team if team has no child
|
TeamSoapList |
getChildTeamList(String sessionId,
String parentTeamId)
Get list of child team's specific to parent team
|
TeamSoapDO |
getTeamData(String sessionId,
String teamId)
Get the team data for a team id.
|
TeamSoapList |
getTeamListForProject(String sessionId,
String projectId)
Get list of team's specific to project
|
UserSoapList |
getTeamMemberList(String sessionId,
String teamId)
Get list of team members specific to team
|
void |
setTeamData(String sessionId,
String teamId,
String title,
String description,
String teamOwnerUserName,
String[] memberUserNames,
int version)
Update team data for given team Id
|
TeamSoapDO createTeam(String sessionId, String projectId, String title, String description, String parentTeamId, String teamOwnerUserName, String[] memberUserNames) throws RemoteException
sessionId - User session id.projectId - The id of the project under which to create the new teamtitle - The title of the new teamdescription - The description of the new teamparentTeamId - The id of the parent teamteamOwnerUserName - The team owner namememberUserNames - The members of the teamcom.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system error occurs.com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.com.collabnet.ce.soap60.fault.ObjectAlreadyExistsFault - if an existing team already exists.com.collabnet.ce.soap60.fault.IllegalArgumentFault - if invalid argument value was supplied.com.collabnet.ce.soap60.fault.InvalidProjectFault - if invalid project id value was supplied.com.collabnet.ce.soap60.fault.InvalidTeamFault - if invalid team id value was supplied.RemoteExceptionvoid setTeamData(String sessionId, String teamId, String title, String description, String teamOwnerUserName, String[] memberUserNames, int version) throws RemoteException
sessionId - User session id.teamId - The team Id.title - The team title.description - The team description.teamOwnerUserName - The team owner user name.memberUserNames - The member user names.version - The version number.com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system error occurs.com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.com.collabnet.ce.soap60.fault.ObjectAlreadyExistsFault - if an existing team already exists.com.collabnet.ce.soap60.fault.IllegalArgumentFault - if invalid argument value was supplied.com.collabnet.ce.soap60.fault.InvalidTeamFault - if invalid team id value was supplied.com.collabnet.ce.soap60.fault.VersionMismatchFault - if invalid version number was supplied.RemoteExceptionTeamSoapDO getTeamData(String sessionId, String teamId) throws RemoteException
sessionId - User session id.teamId - The team id.com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system error occurs.com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.com.collabnet.ce.soap60.fault.ObjectAlreadyExistsFault - if an existing team already exists.com.collabnet.ce.soap60.fault.IllegalArgumentFault - if invalid argument value was supplied.RemoteExceptionvoid deleteTeam(String sessionId, String teamId) throws RemoteException
sessionId - User session id.teamId - The team id.com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system error occurs.com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.com.collabnet.ce.soap60.fault.IllegalArgumentFault - if invalid argument value was supplied.com.collabnet.ce.soap60.fault.DeleteTeamFault - if team has child.RemoteExceptionTeamSoapList getTeamListForProject(String sessionId, String projectId) throws RemoteException
sessionId - User session id.projectId - The id of the project under which to create the new team.com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system error occurs.com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.com.collabnet.ce.soap60.fault.ObjectAlreadyExistsFault - if an existing team already exists.com.collabnet.ce.soap60.fault.IllegalArgumentFault - if invalid argument value was supplied.com.collabnet.ce.soap60.fault.InvalidProjectFault - if invalid project id value was supplied.RemoteExceptionTeamSoapList getChildTeamList(String sessionId, String parentTeamId) throws RemoteException
sessionId - User session id.parentTeamId - The parent team id.com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system error occurs.com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.com.collabnet.ce.soap60.fault.ObjectAlreadyExistsFault - if an existing team already exists.com.collabnet.ce.soap60.fault.IllegalArgumentFault - if invalid argument value was supplied.RemoteExceptionUserSoapList getTeamMemberList(String sessionId, String teamId) throws RemoteException
sessionId - User session id.teamId - The team id.com.collabnet.ce.soap60.fault.InvalidSessionFault - when the specified session id is invalid.com.collabnet.ce.soap60.fault.PermissionDeniedFault - when the user has insufficient privileges.com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system error occurs.com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the specified object id is invalid.com.collabnet.ce.soap60.fault.ObjectAlreadyExistsFault - if an existing team already exists.com.collabnet.ce.soap60.fault.IllegalArgumentFault - if invalid argument value was supplied.RemoteExceptionCopyright © 2016 CollabNet. All Rights Reserved.