public interface RemoteStatus
Note: All paths sent to the callback methods are relative to
the ISVNRemtoe session's URL.
| Modifier and Type | Interface and Description |
|---|---|
static class |
RemoteStatus.Entry
Contains additional information related to a modification or
deletion event.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addedDirectory(java.lang.String relativePath)
A directory was added.
|
void |
addedFile(java.lang.String relativePath)
A file was added.
|
void |
addedSymlink(java.lang.String relativePath)
A symbolic link was added.
|
void |
deleted(java.lang.String relativePath)
An entry was deleted.
|
void |
modifiedDirectory(java.lang.String relativePath,
boolean childrenModified,
boolean propsModified,
RemoteStatus.Entry nodeInfo)
A directory was modified.
|
void |
modifiedFile(java.lang.String relativePath,
boolean textModified,
boolean propsModified,
RemoteStatus.Entry nodeInfo)
A file was modified.
|
void |
modifiedSymlink(java.lang.String relativePath,
boolean targetModified,
boolean propsModified,
RemoteStatus.Entry nodeInfo)
A symbolic link was modified.
|
void addedDirectory(java.lang.String relativePath)
relativePath - The session-relative path of the new directory.void addedFile(java.lang.String relativePath)
relativePath - The session-relative path of the new file.void addedSymlink(java.lang.String relativePath)
relativePath - The session-relative path of the new symbolic link.void modifiedDirectory(java.lang.String relativePath,
boolean childrenModified,
boolean propsModified,
RemoteStatus.Entry nodeInfo)
relativePath - The session-relative path of the directory.childrenModified - The directory contents changed.propsModified - The directory's properties changed.nodeInfo - Additional information about the modified directory.void modifiedFile(java.lang.String relativePath,
boolean textModified,
boolean propsModified,
RemoteStatus.Entry nodeInfo)
relativePath - The session-relative path of the directory.textModified - The file contents changed.propsModified - The file's properties changed.nodeInfo - Additional information about the modified file.void modifiedSymlink(java.lang.String relativePath,
boolean targetModified,
boolean propsModified,
RemoteStatus.Entry nodeInfo)
relativePath - The session-relative path of the symlink.textModified - The link target changed.propsModified - The symlink's properties changed.nodeInfo - Additional information about the modified symlink.void deleted(java.lang.String relativePath)
relativePath - The session-relative path of the entry.