Class TeamAppSoapStub
- java.lang.Object
-
- com.collabnet.ce.soap60.webservices.ClientSoapStub
-
- com.collabnet.ce.soap60.webservices.team.TeamAppSoapStub
-
- All Implemented Interfaces:
ITeamAppSoap
public class TeamAppSoapStub extends ClientSoapStub implements ITeamAppSoap
-
-
Field Summary
-
Fields inherited from class com.collabnet.ce.soap60.webservices.ClientSoapStub
DEFAULT_CLIENT_TIME_OUT
-
-
Constructor Summary
Constructors Constructor Description TeamAppSoapStub(String soapServerUrl)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TeamSoapDOcreateTeam(String sessionId, String projectId, String title, String description, String parentTeamId, String teamOwnerUserName, String[] memberUserNames)Creates a new teamvoiddeleteTeam(String sessionId, String teamId)Delete the team if team has no childTeamSoapListgetChildTeamList(String sessionId, String parentTeamId)Get list of child teams specific to parent teamTeamSoapDOgetTeamData(String sessionId, String teamId)Get the team data for a team id.TeamSoapListgetTeamListForProject(String sessionId, String projectId)Get list of teams specific to projectUserSoapListgetTeamMemberList(String sessionId, String teamId)Get list of team members specific to teamvoidsetTeamData(String sessionId, String teamId, String title, String description, String teamOwnerUserName, String[] memberUserNames, int version)Update team data for given team Id-
Methods inherited from class com.collabnet.ce.soap60.webservices.ClientSoapStub
getServiceCall, getSoapServer, getTimeout, setTimeout, soapParam
-
-
-
-
Constructor Detail
-
TeamAppSoapStub
public TeamAppSoapStub(String soapServerUrl)
-
-
Method Detail
-
createTeam
public TeamSoapDO createTeam(String sessionId, String projectId, String title, String description, String parentTeamId, String teamOwnerUserName, String[] memberUserNames) throws RemoteException
Description copied from interface:ITeamAppSoapCreates a new team- Specified by:
createTeamin interfaceITeamAppSoap- Parameters:
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 team- Returns:
- the team soap object
- Throws:
InvalidSessionFault- when the specified session id is invalid.PermissionDeniedFault- when the user has insufficient privileges.SystemFault- when an unexpected system error occurs.NoSuchObjectFault- when the specified object id is invalid.ObjectAlreadyExistsFault- if an existing team already exists.IllegalArgumentFault- if invalid argument value was supplied.InvalidProjectFault- if invalid project id value was supplied.InvalidTeamFault- if invalid team id value was supplied.RemoteException
-
setTeamData
public void setTeamData(String sessionId, String teamId, String title, String description, String teamOwnerUserName, String[] memberUserNames, int version) throws RemoteException
Description copied from interface:ITeamAppSoapUpdate team data for given team Id- Specified by:
setTeamDatain interfaceITeamAppSoap- Parameters:
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.- Throws:
InvalidSessionFault- when the specified session id is invalid.PermissionDeniedFault- when the user has insufficient privileges.SystemFault- when an unexpected system error occurs.NoSuchObjectFault- when the specified object id is invalid.ObjectAlreadyExistsFault- if an existing team already exists.IllegalArgumentFault- if invalid argument value was supplied.InvalidTeamFault- if invalid team id value was supplied.VersionMismatchFault- if invalid version number was supplied.RemoteException
-
getTeamData
public TeamSoapDO getTeamData(String sessionId, String teamId) throws RemoteException
Description copied from interface:ITeamAppSoapGet the team data for a team id.- Specified by:
getTeamDatain interfaceITeamAppSoap- Parameters:
sessionId- User session id.teamId- The team id.- Returns:
- the team soap object
- Throws:
InvalidSessionFault- when the specified session id is invalid.PermissionDeniedFault- when the user has insufficient privileges.SystemFault- when an unexpected system error occurs.NoSuchObjectFault- when the specified object id is invalid.ObjectAlreadyExistsFault- if an existing team already exists.IllegalArgumentFault- if invalid argument value was supplied.RemoteException
-
deleteTeam
public void deleteTeam(String sessionId, String teamId) throws RemoteException
Description copied from interface:ITeamAppSoapDelete the team if team has no child- Specified by:
deleteTeamin interfaceITeamAppSoap- Parameters:
sessionId- User session id.teamId- The team id.- Throws:
InvalidSessionFault- when the specified session id is invalid.PermissionDeniedFault- when the user has insufficient privileges.SystemFault- when an unexpected system error occurs.NoSuchObjectFault- when the specified object id is invalid.IllegalArgumentFault- if invalid argument value was supplied.DeleteTeamFault- if team has child.RemoteException
-
getTeamListForProject
public TeamSoapList getTeamListForProject(String sessionId, String projectId) throws RemoteException
Description copied from interface:ITeamAppSoapGet list of teams specific to project- Specified by:
getTeamListForProjectin interfaceITeamAppSoap- Parameters:
sessionId- User session id.projectId- The id of the project under which to create the new team.- Returns:
- list of team for project.
- Throws:
InvalidSessionFault- when the specified session id is invalid.PermissionDeniedFault- when the user has insufficient privileges.SystemFault- when an unexpected system error occurs.NoSuchObjectFault- when the specified object id is invalid.ObjectAlreadyExistsFault- if an existing team already exists.IllegalArgumentFault- if invalid argument value was supplied.InvalidProjectFault- if invalid project id value was supplied.RemoteException
-
getChildTeamList
public TeamSoapList getChildTeamList(String sessionId, String parentTeamId) throws RemoteException
Description copied from interface:ITeamAppSoapGet list of child teams specific to parent team- Specified by:
getChildTeamListin interfaceITeamAppSoap- Parameters:
sessionId- User session id.parentTeamId- The parent team id.- Returns:
- list of child teams for given parent team id.
- Throws:
InvalidSessionFault- when the specified session id is invalid.PermissionDeniedFault- when the user has insufficient privileges.SystemFault- when an unexpected system error occurs.NoSuchObjectFault- when the specified object id is invalid.ObjectAlreadyExistsFault- if an existing team already exists.IllegalArgumentFault- if invalid argument value was supplied.RemoteException
-
getTeamMemberList
public UserSoapList getTeamMemberList(String sessionId, String teamId) throws RemoteException
Description copied from interface:ITeamAppSoapGet list of team members specific to team- Specified by:
getTeamMemberListin interfaceITeamAppSoap- Parameters:
sessionId- User session id.teamId- The team id.- Returns:
- list of team members
- Throws:
InvalidSessionFault- when the specified session id is invalid.PermissionDeniedFault- when the user has insufficient privileges.SystemFault- when an unexpected system error occurs.NoSuchObjectFault- when the specified object id is invalid.ObjectAlreadyExistsFault- if an existing team already exists.IllegalArgumentFault- if invalid argument value was supplied.RemoteException
-
-