Package | Description |
---|---|
org.tmatesoft.svn.cli | |
org.tmatesoft.svn.cli.svnadmin | |
org.tmatesoft.svn.core |
This package mostly contains common classes as well as interfaces used
throughout all the library.
|
org.tmatesoft.svn.core.auth |
This package contains interfaces/classes used by the library to
authenticate a user to a repository server.
|
org.tmatesoft.svn.core.internal.io.dav | |
org.tmatesoft.svn.core.internal.io.dav.handlers | |
org.tmatesoft.svn.core.internal.io.dav.http | |
org.tmatesoft.svn.core.internal.io.fs | |
org.tmatesoft.svn.core.internal.io.svn | |
org.tmatesoft.svn.core.internal.wc | |
org.tmatesoft.svn.core.internal.wc.admin | |
org.tmatesoft.svn.core.internal.wc2.ng | |
org.tmatesoft.svn.core.internal.wc2.remote | |
org.tmatesoft.svn.core.io |
This package provides a low-level API for direct interacting with a Subversion repository on
the SVN protocol level.
|
org.tmatesoft.svn.core.wc |
This package provides a high-level API for managing Working Copies in a way
compatible with the native SVN command line client.
|
org.tmatesoft.svn.core.wc.admin |
This package provides API for administrative managing Subversion repositories on a local machine.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractSVNCommandEnvironment.handleError(SVNErrorMessage err) |
boolean |
AbstractSVNCommandEnvironment.handleWarning(SVNErrorMessage err,
SVNErrorCode[] warningCodes,
boolean quiet) |
SVNAuthentication |
SVNConsoleAuthenticationProvider.requestClientAuthentication(String kind,
SVNURL url,
String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |
Modifier and Type | Method and Description |
---|---|
void |
SVNAdminRemoveLocksCommand.handleLock(String path,
SVNLock lock,
SVNErrorMessage error) |
void |
SVNAdminRemoveLocksCommand.handleUnlock(String path,
SVNLock lock,
SVNErrorMessage error) |
Modifier and Type | Field and Description |
---|---|
static SVNErrorMessage |
SVNErrorMessage.UNKNOWN_ERROR_MESSAGE
This is a type of an error message denoting an error of an unknown nature.
|
Modifier and Type | Method and Description |
---|---|
static SVNErrorMessage |
SVNErrorMessage.create(SVNErrorCode code)
Creates an error message given an error code.
|
static SVNErrorMessage |
SVNErrorMessage.create(SVNErrorCode code,
String message)
Creates an error message given an error code and description.
|
static SVNErrorMessage |
SVNErrorMessage.create(SVNErrorCode code,
String message,
int type)
Creates an error message given an error code, description and a type (
whether it's a warning or an error).
|
static SVNErrorMessage |
SVNErrorMessage.create(SVNErrorCode code,
String message,
Object... objects)
Creates an error message given an error code, description and may be related
objects to be formatted with the error description.
|
static SVNErrorMessage |
SVNErrorMessage.create(SVNErrorCode code,
String message,
Object object)
Creates an error message given an error code, description and may be a related
object to be formatted with the error description.
|
static SVNErrorMessage |
SVNErrorMessage.create(SVNErrorCode code,
String message,
Object[] objects,
int type)
Creates an error message given an error code, description, an error type
(whether it's a warning or an error) and may be related objects to be
formatted with the error description.
|
static SVNErrorMessage |
SVNErrorMessage.create(SVNErrorCode code,
String message,
Object[] objects,
int type,
Throwable cause)
Creates an error message given an error code, description, an error type
(whether it's a warning or an error) and may be related objects to be
formatted with the error description and an optional cause.
|
static SVNErrorMessage |
SVNErrorMessage.create(SVNErrorCode code,
String message,
Object object,
int type)
Creates an error message given an error code, description, an error type
(whether it's a warning or an error) and may be a related object to be
formatted with the error description.
|
static SVNErrorMessage |
SVNErrorMessage.create(SVNErrorCode code,
Throwable cause)
Creates an error message given an error code and cause.
|
SVNErrorMessage |
SVNErrorMessage.findChildWithErrorCode(SVNErrorCode errorCode) |
SVNErrorMessage |
SVNErrorMessage.getChildErrorMessage()
Returns an error message (if any) that was returned from a
deeper method call.
|
SVNErrorMessage |
SVNCommitInfo.getErrorMessage()
Gets an error message for a failed commit (if it
has failed).
|
SVNErrorMessage |
SVNException.getErrorMessage()
Returns an error message provided to this exception object.
|
SVNErrorMessage |
SVNErrorMessage.getRootErrorMessage()
Follows the children chain and returns the error message of the last child in this chain.
|
SVNErrorMessage |
SVNErrorMessage.wrap(String parentMessage)
Wraps this error message into a new one that is returned as
a parent error message.
|
SVNErrorMessage |
SVNErrorMessage.wrap(String parentMessage,
Object relatedObject)
Wraps this error message into a new one that is returned as
a parent error message.
|
SVNErrorMessage |
SVNErrorMessage.wrap(String parentMessage,
Object[] relatedObjects)
Wraps this error message into a new one that is returned as
a parent error message.
|
Modifier and Type | Method and Description |
---|---|
void |
SVNErrorMessage.setChildErrorMessage(SVNErrorMessage childMessage)
Sets a child error message for this one.
|
Constructor and Description |
---|
SVNAuthenticationException(SVNErrorMessage errorMessage)
Creates a new authentication exception given detailed error
information.
|
SVNAuthenticationException(SVNErrorMessage errorMessage,
Throwable cause)
Creates a new authentication exception given detailed error
information and the original cause.
|
SVNCancelException(SVNErrorMessage errorMessage)
Constructs an SVNCancelException given the
error message.
|
SVNCancelException(SVNErrorMessage errorMessage,
Throwable cause) |
SVNCommitInfo(long revision,
String author,
Date date,
SVNErrorMessage error)
Constructs an SVNCommitInfo object.
|
SVNException(SVNErrorMessage errorMessage)
Creates an exception given an error message.
|
SVNException(SVNErrorMessage errorMessage,
Throwable cause)
Creates an exception given an error message and the cause exception.
|
Modifier and Type | Method and Description |
---|---|
void |
BasicAuthenticationManager.acknowledgeAuthentication(boolean accepted,
String kind,
String realm,
SVNErrorMessage errorMessage,
SVNAuthentication authentication)
Does nothing.
|
void |
ISVNAuthenticationManager.acknowledgeAuthentication(boolean accepted,
String kind,
String realm,
SVNErrorMessage errorMessage,
SVNAuthentication authentication)
Accepts the given authentication if it was successfully accepted by a
repository server, or not if authentication failed.
|
void |
ISVNAuthenticationManagerExt.acknowledgeAuthentication(boolean accepted,
String kind,
String realm,
SVNErrorMessage errorMessage,
SVNAuthentication authentication,
SVNURL accessedLocation) |
static void |
BasicAuthenticationManager.acknowledgeAuthentication(boolean accepted,
String kind,
String realm,
SVNErrorMessage errorMessage,
SVNAuthentication authentication,
SVNURL accessedURL,
ISVNAuthenticationManager authManager)
Utility method to acknowledge successful or failed authentication attempt
|
void |
BasicAuthenticationManager.acknowledgeProxyContext(boolean accepted,
SVNErrorMessage errorMessage)
Does nothing.
|
void |
ISVNProxyManager.acknowledgeProxyContext(boolean accepted,
SVNErrorMessage errorMessage)
Accepts this proxy settings if successfully connected
to the proxy server, or not if failed to connect.
|
SVNAuthentication |
ISVNAuthenticationProvider.requestClientAuthentication(String kind,
SVNURL url,
String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored)
Returns a next user credential of the specified kind for the given
authentication realm.
|
Modifier and Type | Method and Description |
---|---|
static SVNErrorMessage |
DAVUtil.createUnexpectedStatusErrorMessage(HTTPStatus httpStatus,
String method,
String path) |
Modifier and Type | Method and Description |
---|---|
void |
DAVConnection.doProppatch(String repositoryPath,
String path,
StringBuffer requestBody,
DefaultHandler handler,
SVNErrorMessage context) |
Modifier and Type | Method and Description |
---|---|
SVNErrorMessage |
DAVProppatchHandler.getError() |
SVNErrorMessage |
DAVErrorHandler.getErrorMessage() |
Modifier and Type | Method and Description |
---|---|
SVNErrorMessage |
HTTPStatus.getError() |
SVNErrorMessage |
HTTPConnection.readData(org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest request,
OutputStream dst) |
SVNErrorMessage |
HTTPConnection.readData(org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest request,
String method,
String path,
DefaultHandler handler) |
SVNErrorMessage |
HTTPConnection.readError(org.tmatesoft.svn.core.internal.io.dav.http.HTTPRequest request,
String method,
String path) |
Modifier and Type | Method and Description |
---|---|
void |
HTTPSSLKeyManager.acknowledgeAndClearAuthentication(SVNErrorMessage errorMessage) |
HTTPStatus |
IHTTPConnection.request(String method,
String path,
HTTPHeader header,
InputStream body,
int ok1,
int ok2,
OutputStream dst,
DefaultHandler handler,
SVNErrorMessage context) |
HTTPStatus |
HTTPConnection.request(String method,
String path,
HTTPHeader header,
InputStream body,
int ok1,
int ok2,
OutputStream dst,
DefaultHandler handler,
SVNErrorMessage context) |
HTTPStatus |
IHTTPConnection.request(String method,
String path,
HTTPHeader header,
StringBuffer body,
int ok1,
int ok2,
OutputStream dst,
DefaultHandler handler,
SVNErrorMessage context) |
HTTPStatus |
HTTPConnection.request(String method,
String path,
HTTPHeader header,
StringBuffer body,
int ok1,
int ok2,
OutputStream dst,
DefaultHandler handler,
SVNErrorMessage context) |
void |
HTTPStatus.setError(SVNErrorMessage error) |
Modifier and Type | Method and Description |
---|---|
long |
FSCommitter.commitTxn(boolean runPreCommitHook,
boolean runPostCommitHook,
SVNErrorMessage[] postCommitHookError,
StringBuffer conflictPath) |
static boolean |
FSErrors.isLockError(SVNErrorMessage err) |
static boolean |
FSErrors.isUnlockError(SVNErrorMessage err) |
Modifier and Type | Method and Description |
---|---|
protected SVNErrorMessage |
SVNAuthenticator.getLastError() |
protected SVNErrorMessage |
SVNPlainAuthenticator.readAuthResponse() |
Modifier and Type | Method and Description |
---|---|
protected void |
SVNAuthenticator.setLastError(SVNErrorMessage err) |
void |
SVNConnection.writeError(SVNErrorMessage error) |
Modifier and Type | Method and Description |
---|---|
void |
DefaultSVNAuthenticationManager.acknowledgeAuthentication(boolean accepted,
String kind,
String realm,
SVNErrorMessage errorMessage,
SVNAuthentication authentication) |
static SVNEvent |
SVNEventFactory.createErrorEvent(SVNErrorMessage error,
SVNEventAction expectedAction) |
static SVNEvent |
SVNEventFactory.createLockEvent(File file,
SVNEventAction action,
SVNLock lock,
SVNErrorMessage error) |
static SVNEvent |
SVNEventFactory.createSVNEvent(File file,
SVNNodeKind kind,
String mimetype,
long revision,
SVNEventAction action,
SVNEventAction expected,
SVNErrorMessage error,
SVNMergeRange range) |
static SVNEvent |
SVNEventFactory.createSVNEvent(File file,
SVNNodeKind kind,
String mimetype,
long revision,
SVNEventAction action,
SVNEventAction expected,
SVNErrorMessage error,
SVNMergeRange range,
long processedItemsCount,
long totalItemsCount) |
static SVNEvent |
SVNEventFactory.createSVNEvent(File file,
SVNNodeKind kind,
String mimetype,
long revision,
SVNEventAction action,
SVNEventAction expected,
SVNErrorMessage error,
SVNMergeRange range,
long processedItemsCount,
long totalItemsCount,
SVNProperties revisionProperties,
String propertyName) |
static SVNEvent |
SVNEventFactory.createSVNEvent(File file,
SVNNodeKind kind,
String mimetype,
long revision,
SVNEventAction action,
SVNEventAction expected,
SVNErrorMessage error,
SVNMergeRange range,
SVNProperties revisionProperties,
String propertyName) |
static SVNEvent |
SVNEventFactory.createSVNEvent(File file,
SVNNodeKind kind,
String mimetype,
long revision,
SVNStatusType cstatus,
SVNStatusType pstatus,
SVNStatusType lstatus,
SVNEventAction action,
SVNEventAction expected,
SVNErrorMessage error,
SVNMergeRange range) |
static SVNEvent |
SVNEventFactory.createSVNEvent(File file,
SVNNodeKind kind,
String mimetype,
long revision,
SVNStatusType cstatus,
SVNStatusType pstatus,
SVNStatusType lstatus,
SVNEventAction action,
SVNEventAction expected,
SVNErrorMessage error,
SVNMergeRange range,
String changelistName) |
static void |
SVNErrorManager.error(SVNErrorMessage err,
Level logLevel,
SVNLogType logType) |
static void |
SVNErrorManager.error(SVNErrorMessage err1,
SVNErrorMessage err2,
Level logLevel,
SVNLogType logType) |
static void |
SVNErrorManager.error(SVNErrorMessage err1,
SVNErrorMessage err2,
SVNLogType logType) |
static void |
SVNErrorManager.error(SVNErrorMessage err1,
SVNErrorMessage err2,
Throwable cause,
Level logLevel,
SVNLogType logType) |
static void |
SVNErrorManager.error(SVNErrorMessage err1,
SVNErrorMessage err2,
Throwable cause,
SVNLogType logType) |
static void |
SVNErrorManager.error(SVNErrorMessage err,
SVNLogType logType) |
static void |
SVNErrorManager.error(SVNErrorMessage err,
Throwable cause,
Level logLevel,
SVNLogType logType) |
static void |
SVNErrorManager.error(SVNErrorMessage err,
Throwable cause,
SVNLogType logType) |
void |
SVNMergeDriver.SubTreeMergeInfoHandler.handleError(File path,
SVNErrorMessage error) |
void |
SVNMergeDriver.MergeInfoFetcher.handleError(File path,
SVNErrorMessage error) |
SVNAuthentication |
DefaultSVNAuthenticationManager.DumbAuthenticationProvider.requestClientAuthentication(String kind,
SVNURL url,
String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |
SVNAuthentication |
DefaultSVNPersistentAuthenticationProvider.requestClientAuthentication(String kind,
SVNURL url,
String realm,
SVNErrorMessage errorMessage,
SVNAuthentication previousAuth,
boolean authMayBeStored) |
Constructor and Description |
---|
SVNEventExt(File file,
SVNNodeKind kind,
String mimetype,
long revision,
SVNStatusType cstatus,
SVNStatusType pstatus,
SVNStatusType lstatus,
SVNLock lock,
SVNEventAction action,
SVNEventAction expected,
SVNErrorMessage error,
SVNMergeRange range,
String changelistName,
long processedItemsCount,
long totalItemsCount,
SVNProperties revisionProperties,
String propertyName) |
SVNEventExt(SVNErrorMessage errorMessage) |
Modifier and Type | Method and Description |
---|---|
void |
ISVNEntryHandler.handleError(File path,
SVNErrorMessage error) |
Modifier and Type | Method and Description |
---|---|
void |
SvnNgSetLock.handleLock(String path,
SVNLock lock,
SVNErrorMessage error) |
void |
SvnNgSetLock.handleUnlock(String path,
SVNLock lock,
SVNErrorMessage error) |
Modifier and Type | Method and Description |
---|---|
void |
SvnRemoteUnlock.handleLock(String path,
SVNLock lock,
SVNErrorMessage error) |
void |
SvnRemoteSetLock.handleLock(String path,
SVNLock lock,
SVNErrorMessage error) |
void |
SvnRemoteUnlock.handleUnlock(String path,
SVNLock lock,
SVNErrorMessage error) |
void |
SvnRemoteSetLock.handleUnlock(String path,
SVNLock lock,
SVNErrorMessage error) |
Modifier and Type | Method and Description |
---|---|
void |
ISVNLockHandler.handleLock(String path,
SVNLock lock,
SVNErrorMessage error)
Handles the path locked.
|
void |
ISVNLockHandler.handleUnlock(String path,
SVNLock lock,
SVNErrorMessage error)
Handles the path unlocked.
|
Modifier and Type | Method and Description |
---|---|
SVNErrorMessage |
SVNEvent.getErrorMessage()
Gets the error message that (if it's an error situation and
therefore the string is not null)
points to some fault.
|
Constructor and Description |
---|
SVNEvent(File file,
SVNNodeKind kind,
String mimetype,
long revision,
SVNStatusType cstatus,
SVNStatusType pstatus,
SVNStatusType lstatus,
SVNLock lock,
SVNEventAction action,
SVNEventAction expected,
SVNErrorMessage error,
SVNMergeRange range,
String changelistName,
SVNProperties revisionProperties,
String propertyName)
Constructs an SVNEvent object.
|
SVNEvent(SVNErrorMessage errorMessage,
SVNEventAction expected)
Constructs an SVNEvent object given
an error message for a filed operation.
|
Modifier and Type | Method and Description |
---|---|
SVNErrorMessage |
SVNAdminEvent.getError()
Returns the error message describing the error occurred while performing an operation.
|
Constructor and Description |
---|
SVNAdminEvent(SVNAdminEventAction action,
SVNLock lock,
SVNErrorMessage error,
String message)
Creates a new event.
|
Copyright © 2023. All rights reserved.