WorkspaceItem |
WorkspaceService.copy(java.lang.String sourcePath,
java.lang.String destinationPath) |
Copies the workspace folder or file from the source path to the destination path.
|
WorkspaceFile |
WorkspaceService.createFile(java.lang.String path,
java.lang.String localFilePath,
boolean createParentFolders) |
Creates a file in the workspace.
|
WorkspaceFolder |
WorkspaceService.createFolder(java.lang.String path,
boolean createParentFolders) |
Creates a folder in the workspace.
|
SharedWorkspaceEntry |
SharedWorkspaceService.createLink(java.lang.String sharedFolderId,
java.lang.String userId) |
Once a shared folder is created in the repository, access to the corresponding shared workspace folder can be made available to members of the context where the shared folder lives.
|
void |
WorkspaceService.delete(java.lang.String path) |
Delete the specified folder or file in the workspace.
|
void |
BatchWorkspaceService.downloadAsZip(java.util.Set<java.lang.String> paths,
java.lang.String localFilePath,
boolean overwrite) |
Takes the workspace paths in the selected set and downloads them to the specified zip file .
|
void |
WorkspaceService.downloadFile(java.lang.String path,
java.lang.String outputFilePath) |
Downloads the contents the workspace file to the specified local file system path.
|
SynchronizationInfo.CheckoutStatus |
WorkspaceService.getCheckoutStatus(java.lang.String path) |
Gets an enumeration value that describes the checkout status of the file.
|
java.util.List<WorkspaceItem> |
WorkspaceService.getChildren(java.lang.String path) |
Gets the immediate children of the workspace folder.
|
WorkspaceItem |
WorkspaceService.getItem(java.lang.String path) |
Gets a client representation of the item in the workspace.
|
void |
WorkspaceService.markForAdd(java.lang.String path) |
Marks a file for addition to the repository.
|
WorkspaceItem |
WorkspaceService.move(java.lang.String sourcePath,
java.lang.String destinationPath) |
Moves the workspace folder or file from one location to another.
|
WorkspaceItem |
WorkspaceService.rename(java.lang.String path,
java.lang.String name) |
Renames the workspace folder or file.
|
WorkspaceFile |
WorkspaceService.updateFileContents(java.lang.String path,
java.lang.String localFilePath) |
Replaces the content of the workspace file with the content of the specified local file system file.
|