Uses of Class
org.tmatesoft.svn.core.SVNErrorMessage
-
Packages that use SVNErrorMessage 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.fs.repcache 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.wc16 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.javahl This package provides an implementation of the native Subversion javahl binding interface SVNClientInterface that is distributed within the org.tigris.subversion.javahl package.org.tmatesoft.svn.core.javahl17 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. -
-
Uses of SVNErrorMessage in org.tmatesoft.svn.cli
Fields in org.tmatesoft.svn.cli declared as SVNErrorMessage Modifier and Type Field Description private SVNErrorMessage
SVNCommandUtil.InputReader. myError
Methods in org.tmatesoft.svn.cli that return SVNErrorMessage Modifier and Type Method Description SVNErrorMessage
SVNCommandUtil.InputReader. getError()
Methods in org.tmatesoft.svn.cli with parameters of type SVNErrorMessage Modifier and Type Method Description void
AbstractSVNCommandEnvironment. handleError(SVNErrorMessage err)
boolean
AbstractSVNCommandEnvironment. handleWarning(SVNErrorMessage err, SVNErrorCode[] warningCodes, boolean quiet)
SVNAuthentication
SVNConsoleAuthenticationProvider. requestClientAuthentication(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored)
-
Uses of SVNErrorMessage in org.tmatesoft.svn.cli.svnadmin
Methods in org.tmatesoft.svn.cli.svnadmin with parameters of type SVNErrorMessage Modifier and Type Method Description void
SVNAdminRemoveLocksCommand. handleLock(java.lang.String path, SVNLock lock, SVNErrorMessage error)
void
SVNAdminRemoveLocksCommand. handleUnlock(java.lang.String path, SVNLock lock, SVNErrorMessage error)
-
Uses of SVNErrorMessage in org.tmatesoft.svn.core
Fields in org.tmatesoft.svn.core declared as SVNErrorMessage Modifier and Type Field Description private SVNErrorMessage
SVNErrorMessage. myChildErrorMessage
private SVNErrorMessage
SVNCommitInfo. myErrorMessage
private SVNErrorMessage
SVNException. myErrorMessage
static SVNErrorMessage
SVNErrorMessage. UNKNOWN_ERROR_MESSAGE
This is a type of an error message denoting an error of an unknown nature.Methods in org.tmatesoft.svn.core that return SVNErrorMessage Modifier and Type Method Description static SVNErrorMessage
SVNErrorMessage. create(SVNErrorCode code)
Creates an error message given an error code.static SVNErrorMessage
SVNErrorMessage. create(SVNErrorCode code, java.lang.String message)
Creates an error message given an error code and description.static SVNErrorMessage
SVNErrorMessage. create(SVNErrorCode code, java.lang.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, java.lang.String message, java.lang.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, java.lang.String message, java.lang.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, java.lang.String message, java.lang.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, java.lang.String message, java.lang.Object[] objects, int type, java.lang.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, java.lang.String message, java.lang.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, java.lang.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(java.lang.String parentMessage)
Wraps this error message into a new one that is returned as a parent error message.SVNErrorMessage
SVNErrorMessage. wrap(java.lang.String parentMessage, java.lang.Object relatedObject)
Wraps this error message into a new one that is returned as a parent error message.SVNErrorMessage
SVNErrorMessage. wrap(java.lang.String parentMessage, java.lang.Object[] relatedObjects)
Wraps this error message into a new one that is returned as a parent error message.Methods in org.tmatesoft.svn.core with parameters of type SVNErrorMessage Modifier and Type Method Description void
SVNErrorMessage. setChildErrorMessage(SVNErrorMessage childMessage)
Sets a child error message for this one.Constructors in org.tmatesoft.svn.core with parameters of type SVNErrorMessage Constructor Description SVNAuthenticationException(SVNErrorMessage errorMessage)
Creates a new authentication exception given detailed error information.SVNAuthenticationException(SVNErrorMessage errorMessage, java.lang.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, java.lang.Throwable cause)
SVNCommitInfo(long revision, java.lang.String author, java.util.Date date, SVNErrorMessage error)
Constructs an SVNCommitInfo object.SVNException(SVNErrorMessage errorMessage)
Creates an exception given an error message.SVNException(SVNErrorMessage errorMessage, java.lang.Throwable cause)
Creates an exception given an error message and the cause exception. -
Uses of SVNErrorMessage in org.tmatesoft.svn.core.auth
Methods in org.tmatesoft.svn.core.auth with parameters of type SVNErrorMessage Modifier and Type Method Description void
BasicAuthenticationManager. acknowledgeAuthentication(boolean accepted, java.lang.String kind, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication authentication)
Does nothing.static void
BasicAuthenticationManager. acknowledgeAuthentication(boolean accepted, java.lang.String kind, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication authentication, SVNURL accessedURL, ISVNAuthenticationManager authManager)
Utility method to acknowledge successful or failed authentication attemptvoid
ISVNAuthenticationManager. acknowledgeAuthentication(boolean accepted, java.lang.String kind, java.lang.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, java.lang.String kind, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication authentication, SVNURL accessedLocation)
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(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored)
Returns a next user credential of the specified kind for the given authentication realm. -
Uses of SVNErrorMessage in org.tmatesoft.svn.core.internal.io.dav
Methods in org.tmatesoft.svn.core.internal.io.dav that return SVNErrorMessage Modifier and Type Method Description private static SVNErrorMessage
DAVUtil. createDefaultUnexpectedStatusErrorMessage(HTTPStatus httpStatus, java.lang.String path, java.lang.String location)
static SVNErrorMessage
DAVUtil. createUnexpectedStatusErrorMessage(HTTPStatus httpStatus, java.lang.String method, java.lang.String path)
Methods in org.tmatesoft.svn.core.internal.io.dav with parameters of type SVNErrorMessage Modifier and Type Method Description void
DAVConnection. doProppatch(java.lang.String repositoryPath, java.lang.String path, java.lang.StringBuffer requestBody, org.xml.sax.helpers.DefaultHandler handler, SVNErrorMessage context)
private HTTPStatus
DAVConnection. performHttpRequest(IHTTPConnection httpConnection, java.lang.String method, java.lang.String src, HTTPHeader header, java.lang.StringBuffer body, int ok1, int ok2, java.io.OutputStream dst, org.xml.sax.helpers.DefaultHandler handler, SVNErrorMessage context)
-
Uses of SVNErrorMessage in org.tmatesoft.svn.core.internal.io.dav.handlers
Fields in org.tmatesoft.svn.core.internal.io.dav.handlers declared as SVNErrorMessage Modifier and Type Field Description private SVNErrorMessage
DAVErrorHandler. myError
private SVNErrorMessage
DAVProppatchHandler. myError
private SVNErrorMessage
DAVMergeHandler. myPostCommitError
Methods in org.tmatesoft.svn.core.internal.io.dav.handlers that return SVNErrorMessage Modifier and Type Method Description SVNErrorMessage
DAVProppatchHandler. getError()
SVNErrorMessage
DAVErrorHandler. getErrorMessage()
-
Uses of SVNErrorMessage in org.tmatesoft.svn.core.internal.io.dav.http
Fields in org.tmatesoft.svn.core.internal.io.dav.http declared as SVNErrorMessage Modifier and Type Field Description private SVNErrorMessage
HTTPStatus. myError
private SVNErrorMessage
HTTPRequest. myErrorMessage
Methods in org.tmatesoft.svn.core.internal.io.dav.http that return SVNErrorMessage Modifier and Type Method Description static SVNErrorMessage
HTTPRequest. createDefaultErrorMessage(SVNURL host, java.lang.String path, HTTPStatus status, java.lang.String context, java.lang.Object[] contextObjects)
SVNErrorMessage
HTTPStatus. getError()
SVNErrorMessage
HTTPRequest. getErrorMessage()
private SVNErrorMessage
HTTPConnection. readData(java.io.InputStream is, java.lang.String method, java.lang.String path, org.xml.sax.helpers.DefaultHandler handler)
SVNErrorMessage
HTTPConnection. readData(HTTPRequest request, java.io.OutputStream dst)
SVNErrorMessage
HTTPConnection. readData(HTTPRequest request, java.lang.String method, java.lang.String path, org.xml.sax.helpers.DefaultHandler handler)
SVNErrorMessage
HTTPConnection. readError(HTTPRequest request, java.lang.String method, java.lang.String path)
private SVNErrorMessage
HTTPRequest. readError(java.lang.String request, java.lang.String path, SVNErrorMessage context)
Methods in org.tmatesoft.svn.core.internal.io.dav.http with parameters of type SVNErrorMessage Modifier and Type Method Description void
HTTPSSLKeyManager. acknowledgeAndClearAuthentication(SVNErrorMessage errorMessage)
void
HTTPRequest. dispatch(java.lang.String request, java.lang.String path, HTTPHeader header, int ok1, int ok2, SVNErrorMessage context)
heart of http engine.private SVNErrorMessage
HTTPRequest. readError(java.lang.String request, java.lang.String path, SVNErrorMessage context)
HTTPStatus
HTTPConnection. request(java.lang.String method, java.lang.String path, HTTPHeader header, java.io.InputStream body, int ok1, int ok2, java.io.OutputStream dst, org.xml.sax.helpers.DefaultHandler handler, SVNErrorMessage context)
HTTPStatus
HTTPConnection. request(java.lang.String method, java.lang.String path, HTTPHeader header, java.lang.StringBuffer body, int ok1, int ok2, java.io.OutputStream dst, org.xml.sax.helpers.DefaultHandler handler, SVNErrorMessage context)
HTTPStatus
IHTTPConnection. request(java.lang.String method, java.lang.String path, HTTPHeader header, java.io.InputStream body, int ok1, int ok2, java.io.OutputStream dst, org.xml.sax.helpers.DefaultHandler handler, SVNErrorMessage context)
HTTPStatus
IHTTPConnection. request(java.lang.String method, java.lang.String path, HTTPHeader header, java.lang.StringBuffer body, int ok1, int ok2, java.io.OutputStream dst, org.xml.sax.helpers.DefaultHandler handler, SVNErrorMessage context)
void
HTTPStatus. setError(SVNErrorMessage error)
-
Uses of SVNErrorMessage in org.tmatesoft.svn.core.internal.io.fs
Methods in org.tmatesoft.svn.core.internal.io.fs that return SVNErrorMessage Modifier and Type Method Description static SVNErrorMessage
FSErrors. errorAlreadyExists(FSRoot root, java.lang.String path, FSFS owner)
static SVNErrorMessage
FSErrors. errorConflict(java.lang.String path, java.lang.StringBuffer conflictPath)
static SVNErrorMessage
FSErrors. errorCorruptLockFile(java.lang.String path, FSFS owner)
static SVNErrorMessage
FSErrors. errorDanglingId(FSID id, FSFS owner)
static SVNErrorMessage
FSErrors. errorLockExpired(java.lang.String lockToken, FSFS owner)
static SVNErrorMessage
FSErrors. errorLockOwnerMismatch(java.lang.String username, java.lang.String lockOwner, FSFS owner)
static SVNErrorMessage
FSErrors. errorNoSuchLock(java.lang.String path, FSFS owner)
static SVNErrorMessage
FSErrors. errorNotDirectory(java.lang.String path, FSFS owner)
static SVNErrorMessage
FSErrors. errorNotFile(java.lang.String path, FSFS owner)
static SVNErrorMessage
FSErrors. errorNotFound(FSRoot root, java.lang.String path)
static SVNErrorMessage
FSErrors. errorNotMutable(long revision, java.lang.String path, FSFS owner)
static SVNErrorMessage
FSErrors. errorNotTxn()
static SVNErrorMessage
FSErrors. errorNoUser(FSFS owner)
static SVNErrorMessage
FSErrors. errorOutOfDate(java.lang.String path, SVNNodeKind kind)
static SVNErrorMessage
FSErrors. errorPathAlreadyLocked(java.lang.String path, java.lang.String owner, FSFS fsfsOwner)
static SVNErrorMessage
FSErrors. errorTxnNotMutable(java.lang.String txnId, FSFS owner)
Methods in org.tmatesoft.svn.core.internal.io.fs with parameters of type SVNErrorMessage Modifier and Type Method Description long
FSCommitter. commitTxn(boolean runPreCommitHook, boolean runPostCommitHook, SVNErrorMessage[] postCommitHookError, java.lang.StringBuffer conflictPath)
static boolean
FSErrors. isLockError(SVNErrorMessage err)
static boolean
FSErrors. isUnlockError(SVNErrorMessage err)
-
Uses of SVNErrorMessage in org.tmatesoft.svn.core.internal.io.fs.repcache
Methods in org.tmatesoft.svn.core.internal.io.fs.repcache that return SVNErrorMessage Modifier and Type Method Description private static SVNErrorMessage
FSRepresentationCacheManager. convertError(org.tmatesoft.sqljet.core.SqlJetException e)
-
Uses of SVNErrorMessage in org.tmatesoft.svn.core.internal.io.svn
Fields in org.tmatesoft.svn.core.internal.io.svn declared as SVNErrorMessage Modifier and Type Field Description private SVNErrorMessage
SVNAuthenticator. myLastError
Methods in org.tmatesoft.svn.core.internal.io.svn that return SVNErrorMessage Modifier and Type Method Description private static SVNErrorMessage
SVNReader. getErrorMessage(SVNItem item)
protected SVNErrorMessage
SVNAuthenticator. getLastError()
protected SVNErrorMessage
SVNPlainAuthenticator. readAuthResponse()
Methods in org.tmatesoft.svn.core.internal.io.svn with parameters of type SVNErrorMessage Modifier and Type Method Description protected void
SVNAuthenticator. setLastError(SVNErrorMessage err)
void
SVNConnection. writeError(SVNErrorMessage error)
-
Uses of SVNErrorMessage in org.tmatesoft.svn.core.internal.wc
Fields in org.tmatesoft.svn.core.internal.wc declared as SVNErrorMessage Modifier and Type Field Description private SVNErrorMessage
DefaultSVNAuthenticationManager. myPreviousErrorMessage
Methods in org.tmatesoft.svn.core.internal.wc that return SVNErrorMessage Modifier and Type Method Description private SVNErrorMessage
SVNMergeDriver. makeMergeConflictError(java.io.File targetPath, SVNMergeRange range)
Methods in org.tmatesoft.svn.core.internal.wc with parameters of type SVNErrorMessage Modifier and Type Method Description void
DefaultSVNAuthenticationManager. acknowledgeAuthentication(boolean accepted, java.lang.String kind, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication authentication)
void
DefaultSVNAuthenticationManager.SimpleProxyManager. acknowledgeProxyContext(boolean accepted, SVNErrorMessage errorMessage)
static SVNEvent
SVNEventFactory. createErrorEvent(SVNErrorMessage error, SVNEventAction expectedAction)
static SVNEvent
SVNEventFactory. createLockEvent(java.io.File file, SVNEventAction action, SVNLock lock, SVNErrorMessage error)
static SVNEvent
SVNEventFactory. createSVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range)
static SVNEvent
SVNEventFactory. createSVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range, long processedItemsCount, long totalItemsCount)
static SVNEvent
SVNEventFactory. createSVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range, long processedItemsCount, long totalItemsCount, SVNProperties revisionProperties, java.lang.String propertyName)
static SVNEvent
SVNEventFactory. createSVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range, SVNProperties revisionProperties, java.lang.String propertyName)
static SVNEvent
SVNEventFactory. createSVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNStatusType cstatus, SVNStatusType pstatus, SVNStatusType lstatus, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range)
static SVNEvent
SVNEventFactory. createSVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNStatusType cstatus, SVNStatusType pstatus, SVNStatusType lstatus, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range, java.lang.String changelistName)
static void
SVNErrorManager. error(SVNErrorMessage err, java.lang.Throwable cause, java.util.logging.Level logLevel, SVNLogType logType)
static void
SVNErrorManager. error(SVNErrorMessage err, java.lang.Throwable cause, SVNLogType logType)
static void
SVNErrorManager. error(SVNErrorMessage err, java.util.logging.Level logLevel, SVNLogType logType)
static void
SVNErrorManager. error(SVNErrorMessage err1, SVNErrorMessage err2, java.lang.Throwable cause, java.util.logging.Level logLevel, SVNLogType logType)
static void
SVNErrorManager. error(SVNErrorMessage err1, SVNErrorMessage err2, java.lang.Throwable cause, SVNLogType logType)
static void
SVNErrorManager. error(SVNErrorMessage err1, SVNErrorMessage err2, java.util.logging.Level logLevel, SVNLogType logType)
static void
SVNErrorManager. error(SVNErrorMessage err1, SVNErrorMessage err2, SVNLogType logType)
static void
SVNErrorManager. error(SVNErrorMessage err, SVNLogType logType)
void
SVNMergeDriver.MergeInfoFetcher. handleError(java.io.File path, SVNErrorMessage error)
void
SVNMergeDriver.SubTreeMergeInfoHandler. handleError(java.io.File path, SVNErrorMessage error)
SVNAuthentication
DefaultSVNAuthenticationManager.CacheAuthenticationProvider. requestClientAuthentication(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored)
SVNAuthentication
DefaultSVNAuthenticationManager.DumbAuthenticationProvider. requestClientAuthentication(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored)
SVNAuthentication
DefaultSVNPersistentAuthenticationProvider. requestClientAuthentication(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored)
Constructors in org.tmatesoft.svn.core.internal.wc with parameters of type SVNErrorMessage Constructor Description SVNEventExt(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNStatusType cstatus, SVNStatusType pstatus, SVNStatusType lstatus, SVNLock lock, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range, java.lang.String changelistName, long processedItemsCount, long totalItemsCount, SVNProperties revisionProperties, java.lang.String propertyName)
SVNEventExt(SVNErrorMessage errorMessage)
-
Uses of SVNErrorMessage in org.tmatesoft.svn.core.internal.wc.admin
Methods in org.tmatesoft.svn.core.internal.wc.admin with parameters of type SVNErrorMessage Modifier and Type Method Description void
ISVNEntryHandler. handleError(java.io.File path, SVNErrorMessage error)
void
SVNWCAccess.TCEntryHandler. handleError(java.io.File path, SVNErrorMessage error)
-
Uses of SVNErrorMessage in org.tmatesoft.svn.core.internal.wc16
Methods in org.tmatesoft.svn.core.internal.wc16 with parameters of type SVNErrorMessage Modifier and Type Method Description void
SVNChangelistClient16.SVNChangeListWalker. handleError(java.io.File path, SVNErrorMessage error)
void
SVNWCClient16.PropFetchHandler. handleError(java.io.File path, SVNErrorMessage error)
void
SVNWCClient16.PropSetHandler. handleError(java.io.File path, SVNErrorMessage error)
void
SVNWCClient16.PropSetHandlerExt. handleError(java.io.File path, SVNErrorMessage error)
-
Uses of SVNErrorMessage in org.tmatesoft.svn.core.internal.wc2.ng
Methods in org.tmatesoft.svn.core.internal.wc2.ng that return SVNErrorMessage Modifier and Type Method Description private SVNErrorMessage
SvnNgMergeDriver. makeMergeConflictError(java.io.File targetPath, SVNMergeRange range)
Methods in org.tmatesoft.svn.core.internal.wc2.ng with parameters of type SVNErrorMessage Modifier and Type Method Description void
SvnNgSetLock. handleLock(java.lang.String path, SVNLock lock, SVNErrorMessage error)
void
SvnNgSetLock. handleUnlock(java.lang.String path, SVNLock lock, SVNErrorMessage error)
-
Uses of SVNErrorMessage in org.tmatesoft.svn.core.internal.wc2.remote
Methods in org.tmatesoft.svn.core.internal.wc2.remote with parameters of type SVNErrorMessage Modifier and Type Method Description void
SvnRemoteSetLock. handleLock(java.lang.String path, SVNLock lock, SVNErrorMessage error)
void
SvnRemoteUnlock. handleLock(java.lang.String path, SVNLock lock, SVNErrorMessage error)
void
SvnRemoteSetLock. handleUnlock(java.lang.String path, SVNLock lock, SVNErrorMessage error)
void
SvnRemoteUnlock. handleUnlock(java.lang.String path, SVNLock lock, SVNErrorMessage error)
-
Uses of SVNErrorMessage in org.tmatesoft.svn.core.io
Methods in org.tmatesoft.svn.core.io with parameters of type SVNErrorMessage Modifier and Type Method Description void
ISVNLockHandler. handleLock(java.lang.String path, SVNLock lock, SVNErrorMessage error)
Handles the path locked.void
ISVNLockHandler. handleUnlock(java.lang.String path, SVNLock lock, SVNErrorMessage error)
Handles the path unlocked. -
Uses of SVNErrorMessage in org.tmatesoft.svn.core.javahl
Methods in org.tmatesoft.svn.core.javahl with parameters of type SVNErrorMessage Modifier and Type Method Description SVNAuthentication
JavaHLAuthenticationProvider. requestClientAuthentication(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored)
-
Uses of SVNErrorMessage in org.tmatesoft.svn.core.javahl17
Methods in org.tmatesoft.svn.core.javahl17 with parameters of type SVNErrorMessage Modifier and Type Method Description private static java.lang.String
SVNClientImpl. getErrorMessageString(SVNErrorMessage errorMessage)
SVNAuthentication
JavaHLAuthenticationProvider. requestClientAuthentication(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored)
-
Uses of SVNErrorMessage in org.tmatesoft.svn.core.wc
Fields in org.tmatesoft.svn.core.wc declared as SVNErrorMessage Modifier and Type Field Description private SVNErrorMessage
SVNEvent. myErrorMessage
Methods in org.tmatesoft.svn.core.wc that return SVNErrorMessage Modifier and Type Method 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.Constructors in org.tmatesoft.svn.core.wc with parameters of type SVNErrorMessage Constructor Description SVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNStatusType cstatus, SVNStatusType pstatus, SVNStatusType lstatus, SVNLock lock, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range, java.lang.String changelistName, SVNProperties revisionProperties, java.lang.String propertyName)
Constructs an SVNEvent object.SVNEvent(SVNErrorMessage errorMessage, SVNEventAction expected)
Constructs an SVNEvent object given an error message for a filed operation. -
Uses of SVNErrorMessage in org.tmatesoft.svn.core.wc.admin
Fields in org.tmatesoft.svn.core.wc.admin declared as SVNErrorMessage Modifier and Type Field Description private SVNErrorMessage
SVNAdminEvent. myError
Methods in org.tmatesoft.svn.core.wc.admin that return SVNErrorMessage Modifier and Type Method Description SVNErrorMessage
SVNAdminEvent. getError()
Returns the error message describing the error occurred while performing an operation.Constructors in org.tmatesoft.svn.core.wc.admin with parameters of type SVNErrorMessage Constructor Description SVNAdminEvent(SVNAdminEventAction action, SVNLock lock, SVNErrorMessage error, java.lang.String message)
Creates a new event.
-