public interface IScmAppSoap
Modifier and Type | Method and Description |
---|---|
String |
addExternalSystem(String sessionId,
String adapterType,
String title,
String description,
com.collabnet.ce.soap60.types.SoapNamedValues adapterTypeParameters)
Adds an external system of the given adapter type with its title, description and respective list of parameters.
|
RepositorySoapDO |
createRepository(String sessionId,
String projectId,
String externalSystemId,
String repositoryDirectory,
String title,
String description,
boolean idRequiredOnCommit,
boolean hideMonitoringDetails,
String comment)
Creates a new repository in the given SCM server.
|
Repository2SoapDO |
createRepository2(String sessionId,
String projectId,
String externalSystemId,
String repositoryDirectory,
String title,
String description,
boolean idRequiredOnCommit,
boolean hideMonitoringDetails,
String comment,
RepositoryParameter2SoapDO[] params)
Creates a new repository in the given SCM server.
|
void |
deleteRepository(String sessionId,
String repositoryId)
Delete the repository with specified ID.
|
String |
getAuthorizedKeys(String sessionId)
Get all authorized keys for calling user.
|
String |
getAuthorizedKeysForUser(String sessionId,
String username)
Get all authorized keys for a user with a given username.
|
CommitSoapDO |
getCommitData(String sessionId,
String commitId)
Deprecated.
from 7.0.0.1 in favour of getCommitData2() that returns Commit2SoapDO, similar to CommitSoapDO except that the scmfile list does not contain the commit message for each file.
|
Commit2SoapDO |
getCommitData2(String sessionId,
String commitId)
Returns data associated with a specific commit.
|
String |
getCommitId(String sessionId,
String revision,
String externalSystemId,
String repoPath)
Returns a commit Id corresponding to an commit version.
|
CommitSoapList |
getCommitList(String sessionId,
String repositoryId,
com.collabnet.ce.soap60.types.SoapFilter[] filters)
Lists the commits on a given repository.
|
ExternalSystemSoapDO |
getExternalSystem(String sessionId,
String systemId)
Returns information associated with an external system integrated with TeamForge.
|
ExternalSystemSoapList |
getExternalSystemList(String sessionId)
Gets a list of external scm systems integrated with TeamForge.
|
ReplicableScmExternalSystemSoapList |
getReplicableScmExternalSystemList(String sessionId)
Deprecated.
since 8.1 as this call does not return replicable Git external systems. To get the all replicable external systems use getReplicableScmExternalSystemList2 with
null parameter. |
ReplicableScmExternalSystemSoapList |
getReplicableScmExternalSystemList2(String sessionId,
String adapterName)
Lists the replicable external systems for all adapter types or for a given adapter type.
|
ReplicaDataSoapDO |
getReplicaData(String sessionId,
String replicaId)
For a given replica server id get the replica server data.
|
ReplicaServerSoapList |
getReplicaListForExternalSystem(String sessionId,
String externalSystemId,
boolean approvedOnly)
Returns list of replicas for given external system id.
|
ReplicaRepositorySoapList |
getReplicaRepositoryList(String sessionId,
String replicaId)
Lists repositories of the specified replica.
|
ReplicatedRepositorySoapList |
getReplicatedRepositoryList(String sessionId,
String masterRepositoryId)
Lists replicated repositories of the specified SCM master.
|
Repository2SoapDO |
getRepository2Data(String sessionId,
String externalSystemId,
String repositoryDirectory)
Returns data associated with a specific repository.
|
Repository2SoapDO |
getRepository2DataById(String sessionId,
String repositoryId)
Returns data associated with a specific repository Note that a user has permission to view the repository data if the user belongs to a role that has either full view permission or any path-based permission on this repository.
|
RepositorySoapDO |
getRepositoryData(String sessionId,
String externalSystemId,
String repositoryDirectory)
Returns data associated with a specific repository.
|
RepositorySoapDO |
getRepositoryDataById(String sessionId,
String repositoryId)
Returns data associated with a specific repository Note that a user has permission to view the repository data if the user belongs to a role that has either full view permission or any path-based permission on this repository.
|
RepositorySoapList |
getRepositoryList(String sessionId,
String projectId)
Lists the repositories within a given project that the current user has been granted view permission through roles and path based permission.
|
RepositorySoapList |
getRepositoryListForExternalSystem(String sessionId,
String externalSystemId,
String userName)
Lists the repositories on a given external system (SCM Adapter) for which the specified user has been granted view permission.
|
String[] |
getScmAdapterNames(String sessionId)
Returns a string array containing the known list of supported SCM adapters on the server.
|
com.collabnet.ce.soap60.types.SoapNamedValues |
getScmAdapterParameterNamesWithType(String sessionId,
String adapterName)
Returns the SCM adapter parameter names with their corresponding type.
|
String |
getSCMCheckoutCommand(String sessionId,
String repositoryId,
String userName)
Returns the command needed to check out a specific repository.
|
CheckoutCommandSoapList |
getSCMCheckoutCommands(String sessionId,
String repositoryId)
Returns the list of commands that might be used to check out a specific repository.
|
CheckoutCommandSoapList |
getSCMCheckoutCommandsForReplica(String sessionId,
String repositoryId,
String replicaId)
Returns the list of commands that might be used to check out a repository's replica.
|
RepositorySoapDO |
moveRepository(String sessionId,
String repositoryId,
String projectId)
Moves the repository from its current project to the one specified.
|
void |
removeRepositoryFromReplica(String sessionId,
String repositoryId,
String replicaId)
Remove process of replicating of a given repository on a given replica.
|
void |
replicateRepository(String sessionId,
String repositoryId,
String replicaId)
Initiates the process of replicating of a given repository on a given replica.
|
void |
setAuthorizedKeys(String sessionId,
String authorizedKeys)
Set authorized keys for calling user.
|
void |
setAuthorizedKeys(String sessionId,
String username,
String authorizedKeys)
Deprecated.
from 7.2.0.0 in favour of setAuthorizedKeysForUser() which does the same.
|
void |
setAuthorizedKeysForUser(String sessionId,
String username,
String authorizedKeys)
Set authorized keys for given user.
|
void |
setExternalSystemData(String sessionId,
ExternalSystemSoapDO systemData)
Updates information associated with an external system integrated with TeamForge.
|
void |
setReplicaData(String sessionId,
ReplicaDataSoapDO replica)
Sets replica server data.
|
void |
setRepositoryData(String sessionId,
Repository2SoapDO repository)
Sets the repository data
|
RepositorySoapList getRepositoryList(String sessionId, String projectId) throws RemoteException
sessionId
- User session id.projectId
- The project id.com.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified project 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.RemoteException
RepositorySoapList getRepositoryListForExternalSystem(String sessionId, String externalSystemId, String userName) throws RemoteException
sessionId
- User session id. Must be site admin.externalSystemId
- The external system (SCM adapter) id.userName
- Name of the user.com.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified external system id is not validcom.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.IllegalArgumentFault
- when any of the parameters is null/emptyRemoteException
CommitSoapList getCommitList(String sessionId, String repositoryId, com.collabnet.ce.soap60.types.SoapFilter[] filters) throws RemoteException
filters
. The valid filter names are: createdAfter, createdBefore, createdBy.sessionId
- User session id.repositoryId
- The repository id.filters
- Array of filters to apply (null to return unfiltered list).com.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified repository 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.InvalidFilterFault
- If the filters are not valid.RemoteException
CommitSoapDO getCommitData(String sessionId, String commitId) throws RemoteException
sessionId
- User session id.commitId
- The commit id.com.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified commit 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.RemoteException
Commit2SoapDO getCommitData2(String sessionId, String commitId) throws RemoteException
sessionId
- User session id.commitId
- The commit id.com.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified commit 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.RemoteException
RepositorySoapDO getRepositoryData(String sessionId, String externalSystemId, String repositoryDirectory) throws RemoteException
sessionId
- User session id.externalSystemId
- The id of the external system that the repository is located onrepositoryDirectory
- The directory on the external system that the repository is located incom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified repository 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.RemoteException
Repository2SoapDO getRepository2Data(String sessionId, String externalSystemId, String repositoryDirectory) throws RemoteException
sessionId
- User session id.externalSystemId
- The id of the external system that the repository is located onrepositoryDirectory
- The directory on the external system that the repository is located incom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified repository 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.RemoteException
RepositorySoapDO getRepositoryDataById(String sessionId, String repositoryId) throws RemoteException
sessionId
- User session id.repositoryId
- The id of the repositorycom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified repository 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.RemoteException
Repository2SoapDO getRepository2DataById(String sessionId, String repositoryId) throws RemoteException
sessionId
- User session id.repositoryId
- The id of the repositorycom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified repository 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.RemoteException
void setRepositoryData(String sessionId, Repository2SoapDO repository) throws RemoteException
sessionId
- User session id.repository
- The repository datacom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified repository 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.RemoteException
ReplicaDataSoapDO getReplicaData(String sessionId, String replicaId) throws RemoteException
sessionId
- the user sessionreplicaId
- the replica server idcom.collabnet.ce.soap60.fault.InvalidSessionFault
com.collabnet.ce.soap60.fault.PermissionDeniedFault
com.collabnet.ce.soap60.fault.SystemFault
com.collabnet.ce.soap60.fault.NoSuchObjectFault
RemoteException
void setReplicaData(String sessionId, ReplicaDataSoapDO replica) throws RemoteException
sessionId
- user session idreplica
- the replica server data to be setcom.collabnet.ce.soap60.fault.InvalidSessionFault
com.collabnet.ce.soap60.fault.PermissionDeniedFault
com.collabnet.ce.soap60.fault.SystemFault
com.collabnet.ce.soap60.fault.NoSuchObjectFault
com.collabnet.ce.soap60.fault.VersionMismatchFault
RemoteException
String getSCMCheckoutCommand(String sessionId, String repositoryId, String userName) throws RemoteException
sessionId
- User session id.repositoryId
- The id of the repositoryuserName
- User name.com.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified repository 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.RemoteException
CheckoutCommandSoapList getSCMCheckoutCommands(String sessionId, String repositoryId) throws RemoteException
sessionId
- User session id.repositoryId
- The id of the repositorycom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified repository 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.RemoteException
CheckoutCommandSoapList getSCMCheckoutCommandsForReplica(String sessionId, String repositoryId, String replicaId) throws RemoteException
sessionId
- User session id.repositoryId
- The id of the repositoryreplicaId
- The id of the replica to which checkout command should pointcom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified repository 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.RemoteException
RepositorySoapDO createRepository(String sessionId, String projectId, String externalSystemId, String repositoryDirectory, String title, String description, boolean idRequiredOnCommit, boolean hideMonitoringDetails, String comment) throws RemoteException
sessionId
- User session id.projectId
- The project that will host the new repositoryexternalSystemId
- The id of the external system on which the new repository will be createdrepositoryDirectory
- The directory on the external system for the new repositorytitle
- The name of the new repositorydescription
- The description for the new repositoryidRequiredOnCommit
- Whether an artifact ID is required for commits to this repositoryhideMonitoringDetails
- Controls whether monitoring messages for commit include full detailscomment
- The comment for documenting the creation of the repositorycom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified repository 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.RemoteException
Repository2SoapDO createRepository2(String sessionId, String projectId, String externalSystemId, String repositoryDirectory, String title, String description, boolean idRequiredOnCommit, boolean hideMonitoringDetails, String comment, RepositoryParameter2SoapDO[] params) throws RemoteException
sessionId
- User session id.projectId
- The project that will host the new repositoryexternalSystemId
- The id of the external system on which the new repository will be createdrepositoryDirectory
- The directory on the external system for the new repositorytitle
- The name of the new repositorydescription
- The description for the new repositoryidRequiredOnCommit
- Whether an artifact ID is required for commits to this repositoryhideMonitoringDetails
- Controls whether monitoring messages for commit include full detailscomment
- The comment for documenting the creation of the repositoryparams
- The repository parametercom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified repository 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.RemoteException
void deleteRepository(String sessionId, String repositoryId) throws RemoteException
sessionId
- The user's SOAP session idrepositoryId
- The id of the repository to be deletedcom.collabnet.ce.soap60.fault.InvalidSessionFault
- If the user's session is invalidcom.collabnet.ce.soap60.fault.PermissionDeniedFault
- If the user doesn't have proper permissions to delete the repositorycom.collabnet.ce.soap60.fault.SystemFault
- All other faultscom.collabnet.ce.soap60.fault.NoSuchObjectFault
- If repository id doesn't existRemoteException
RepositorySoapDO moveRepository(String sessionId, String repositoryId, String projectId) throws RemoteException
sessionId
- The user's SOAP session idrepositoryId
- The id of the repository to moveprojectId
- The id of the project to move the repository tocom.collabnet.ce.soap60.fault.InvalidSessionFault
- If the user's session is invalidcom.collabnet.ce.soap60.fault.NoSuchObjectFault
- If either the repository id or project id doesn't existcom.collabnet.ce.soap60.fault.ObjectAlreadyExistsFault
- If the destination project is the same as the current projectcom.collabnet.ce.soap60.fault.PermissionDeniedFault
- If the user doesn't have proper permissions on either the repository or the projectcom.collabnet.ce.soap60.fault.SystemFault
- All other faultsRemoteException
String[] getScmAdapterNames(String sessionId) throws RemoteException
sessionId
- The user's SOAP session idcom.collabnet.ce.soap60.fault.InvalidSessionFault
- If the session is invalidcom.collabnet.ce.soap60.fault.PermissionDeniedFault
- If the user is not a site administratorcom.collabnet.ce.soap60.fault.SystemFault
- If anything else goes wrongRemoteException
com.collabnet.ce.soap60.types.SoapNamedValues getScmAdapterParameterNamesWithType(String sessionId, String adapterName) throws RemoteException
sessionId
- The user's SOAP session idadapterName
- The SCM adapter's namecom.collabnet.ce.soap60.fault.InvalidSessionFault
- If the session is invalidcom.collabnet.ce.soap60.fault.NoSuchObjectFault
- If the adapter name is not availablecom.collabnet.ce.soap60.fault.PermissionDeniedFault
- If the user is not a site administratorcom.collabnet.ce.soap60.fault.SystemFault
- If anything else goes wrongRemoteException
String addExternalSystem(String sessionId, String adapterType, String title, String description, com.collabnet.ce.soap60.types.SoapNamedValues adapterTypeParameters) throws RemoteException
sessionId
- is the user session id.adapterType
- is be the adapter type created, which is one value of the call "getScmAdapterNames()".title
- is the title of the external system.description
- is the description of the external system.adapterTypeParameters
- is the list of parameters of names and associated values for the given adapter type. The list of the needed parameters and their expected associated data type is retrieved by calling "getScmAdapterParameterNamesWithType(adapterType)".com.collabnet.ce.soap60.fault.InvalidSessionFault
- When the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- If the adapter does not exist internally.com.collabnet.ce.soap60.fault.PermissionDeniedFault
- When the user has insufficient privileges.com.collabnet.ce.soap60.fault.SystemFault
- When wrong parameters are provided or an unexpected system error occurs.RemoteException
ExternalSystemSoapDO getExternalSystem(String sessionId, String systemId) throws RemoteException
sessionId
- the user session id.systemId
- The GUID of the external system.com.collabnet.ce.soap60.fault.InvalidSessionFault
- When the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- If the external system does not exist internally.com.collabnet.ce.soap60.fault.PermissionDeniedFault
- When the user has insufficient privileges.com.collabnet.ce.soap60.fault.SystemFault
- When wrong parameters are provided or an unexpected system error occurs.RemoteException
ExternalSystemSoapList getExternalSystemList(String sessionId) throws RemoteException
sessionId
- the user session 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 wrong parameters are provided or an unexpected system error occurs.RemoteException
void setExternalSystemData(String sessionId, ExternalSystemSoapDO systemData) throws RemoteException
sessionId
- the user session id.systemData
- the external system data to be updatedcom.collabnet.ce.soap60.fault.NoSuchObjectFault
- If the external system does not exist internally.com.collabnet.ce.soap60.fault.SystemFault
- When wrong parameters are provided or an unexpected system error occurs.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.InvalidOperationFault
- When an attempt is made to set different adapterName or adapterCatrogory.RemoteException
String getCommitId(String sessionId, String revision, String externalSystemId, String repoPath) throws RemoteException
sessionId
- User session id.revision
- The Revision NumberexternalSystemId
- External system id.repoPath
- Repository path.com.collabnet.ce.soap60.fault.InvalidSessionFault
- when the session is invalid (expired / time out)com.collabnet.ce.soap60.fault.PermissionDeniedFault
- when the user does not have read access.com.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified repository id is invalid.RemoteException
ReplicableScmExternalSystemSoapList getReplicableScmExternalSystemList(String sessionId) throws RemoteException
null
parameter.sessionId
- User session id.com.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.RemoteException
ReplicableScmExternalSystemSoapList getReplicableScmExternalSystemList2(String sessionId, String adapterName) throws RemoteException
sessionId
- User session id.adapterName
- the adapter name or null
to list replicable systems for all adapters.com.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.RemoteException
ReplicatedRepositorySoapList getReplicatedRepositoryList(String sessionId, String masterRepositoryId) throws RemoteException
sessionId
- the session keymasterRepositoryId
- the repository Id for which to find replicascom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified master repository 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.RemoteException
ReplicaServerSoapList getReplicaListForExternalSystem(String sessionId, String externalSystemId, boolean approvedOnly) throws RemoteException
sessionId
- the user session id.externalSystemId
- The GUID of the external system.approvedOnly
- The GUID of the external system.com.collabnet.ce.soap60.fault.IllegalArgumentFault
- When wrong parameters are provided.com.collabnet.ce.soap60.fault.InvalidSessionFault
- When the specified session id is invalid.RemoteException
ReplicaRepositorySoapList getReplicaRepositoryList(String sessionId, String replicaId) throws RemoteException
sessionId
- the session keyreplicaId
- the replica Id for which to find repositoriescom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified replica id is invalid.RemoteException
void replicateRepository(String sessionId, String repositoryId, String replicaId) throws RemoteException
sessionId
- the session keyrepositoryId
- the id of the given repositoryreplicaId
- the id of the given replicacom.collabnet.ce.soap60.fault.IllegalArgumentFault
- when the repositoryId or replicaId are null or emptycom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified master repository or replica are not validcom.collabnet.ce.soap60.fault.SystemFault
- if replica command creation failscom.collabnet.ce.soap60.fault.PermissionDeniedFault
- if the user has no permissionRemoteException
void removeRepositoryFromReplica(String sessionId, String repositoryId, String replicaId) throws RemoteException
sessionId
- the session keyrepositoryId
- the id of the given repositoryreplicaId
- the id of the given replicacom.collabnet.ce.soap60.fault.IllegalArgumentFault
- when the repositoryId or replicaId are null or emptycom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified master repository or replica are not validcom.collabnet.ce.soap60.fault.SystemFault
- if replica command creation failscom.collabnet.ce.soap60.fault.PermissionDeniedFault
- if the user has no permissionRemoteException
String getAuthorizedKeysForUser(String sessionId, String username) throws RemoteException
sessionId
- the session keyusername
- name of the usercom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.PermissionDeniedFault
- when the user has insufficient privileges (the sessionId is not of a site admin).com.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.RemoteException
String getAuthorizedKeys(String sessionId) throws RemoteException
sessionId
- the session keycom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.RemoteException
void setAuthorizedKeys(String sessionId, String authorizedKeys) throws RemoteException
sessionId
- the session keyauthorizedKeys
- the string containing authorized keys, separated by '\n' character.com.collabnet.ctf.common.exceptions.InvalidUsernameException
- when username is invalidcom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.RemoteException
void setAuthorizedKeysForUser(String sessionId, String username, String authorizedKeys) throws RemoteException
sessionId
- the session keyusername
- username for whom the authorized keys to be setauthorizedKeys
- the string containing authorized keys, separated by '\n' character.RemoteException
- when username is invalidvoid setAuthorizedKeys(String sessionId, String username, String authorizedKeys) throws RemoteException
sessionId
- the session keyusername
- username for whom the authorized keys to be setauthorizedKeys
- the string containing authorized keys, separated by '\n' character.com.collabnet.ctf.common.exceptions.InvalidUsernameException
- when username is invalidcom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the specified session id is invalid.com.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.com.collabnet.ce.soap60.fault.PermissionDeniedFault
- when the user has insufficient privileges.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified username is invalid.RemoteException
Copyright © 2017 CollabNet. All Rights Reserved.