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 SVNErrorMessageSVNCommandUtil.InputReader. myErrorMethods in org.tmatesoft.svn.cli that return SVNErrorMessage Modifier and Type Method Description SVNErrorMessageSVNCommandUtil.InputReader. getError()Methods in org.tmatesoft.svn.cli with parameters of type SVNErrorMessage Modifier and Type Method Description voidAbstractSVNCommandEnvironment. handleError(SVNErrorMessage err)booleanAbstractSVNCommandEnvironment. handleWarning(SVNErrorMessage err, SVNErrorCode[] warningCodes, boolean quiet)SVNAuthenticationSVNConsoleAuthenticationProvider. 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 voidSVNAdminRemoveLocksCommand. handleLock(java.lang.String path, SVNLock lock, SVNErrorMessage error)voidSVNAdminRemoveLocksCommand. 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 SVNErrorMessageSVNErrorMessage. myChildErrorMessageprivate SVNErrorMessageSVNCommitInfo. myErrorMessageprivate SVNErrorMessageSVNException. myErrorMessagestatic SVNErrorMessageSVNErrorMessage. UNKNOWN_ERROR_MESSAGEThis 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 SVNErrorMessageSVNErrorMessage. create(SVNErrorCode code)Creates an error message given an error code.static SVNErrorMessageSVNErrorMessage. create(SVNErrorCode code, java.lang.String message)Creates an error message given an error code and description.static SVNErrorMessageSVNErrorMessage. 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 SVNErrorMessageSVNErrorMessage. 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 SVNErrorMessageSVNErrorMessage. 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 SVNErrorMessageSVNErrorMessage. 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 SVNErrorMessageSVNErrorMessage. 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 SVNErrorMessageSVNErrorMessage. 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 SVNErrorMessageSVNErrorMessage. create(SVNErrorCode code, java.lang.Throwable cause)Creates an error message given an error code and cause.SVNErrorMessageSVNErrorMessage. findChildWithErrorCode(SVNErrorCode errorCode)SVNErrorMessageSVNErrorMessage. getChildErrorMessage()Returns an error message (if any) that was returned from a deeper method call.SVNErrorMessageSVNCommitInfo. getErrorMessage()Gets an error message for a failed commit (if it has failed).SVNErrorMessageSVNException. getErrorMessage()Returns an error message provided to this exception object.SVNErrorMessageSVNErrorMessage. getRootErrorMessage()Follows the children chain and returns the error message of the last child in this chain.SVNErrorMessageSVNErrorMessage. wrap(java.lang.String parentMessage)Wraps this error message into a new one that is returned as a parent error message.SVNErrorMessageSVNErrorMessage. 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.SVNErrorMessageSVNErrorMessage. 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 voidSVNErrorMessage. 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 voidBasicAuthenticationManager. acknowledgeAuthentication(boolean accepted, java.lang.String kind, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication authentication)Does nothing.static voidBasicAuthenticationManager. 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 attemptvoidISVNAuthenticationManager. 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.voidISVNAuthenticationManagerExt. acknowledgeAuthentication(boolean accepted, java.lang.String kind, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication authentication, SVNURL accessedLocation)voidBasicAuthenticationManager. acknowledgeProxyContext(boolean accepted, SVNErrorMessage errorMessage)Does nothing.voidISVNProxyManager. acknowledgeProxyContext(boolean accepted, SVNErrorMessage errorMessage)Accepts this proxy settings if successfully connected to the proxy server, or not if failed to connect.SVNAuthenticationISVNAuthenticationProvider. 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 SVNErrorMessageDAVUtil. createDefaultUnexpectedStatusErrorMessage(HTTPStatus httpStatus, java.lang.String path, java.lang.String location)static SVNErrorMessageDAVUtil. 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 voidDAVConnection. doProppatch(java.lang.String repositoryPath, java.lang.String path, java.lang.StringBuffer requestBody, org.xml.sax.helpers.DefaultHandler handler, SVNErrorMessage context)private HTTPStatusDAVConnection. 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 SVNErrorMessageDAVErrorHandler. myErrorprivate SVNErrorMessageDAVProppatchHandler. myErrorprivate SVNErrorMessageDAVMergeHandler. myPostCommitErrorMethods in org.tmatesoft.svn.core.internal.io.dav.handlers that return SVNErrorMessage Modifier and Type Method Description SVNErrorMessageDAVProppatchHandler. getError()SVNErrorMessageDAVErrorHandler. 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 SVNErrorMessageHTTPStatus. myErrorprivate SVNErrorMessageHTTPRequest. myErrorMessageMethods in org.tmatesoft.svn.core.internal.io.dav.http that return SVNErrorMessage Modifier and Type Method Description static SVNErrorMessageHTTPRequest. createDefaultErrorMessage(SVNURL host, java.lang.String path, HTTPStatus status, java.lang.String context, java.lang.Object[] contextObjects)SVNErrorMessageHTTPStatus. getError()SVNErrorMessageHTTPRequest. getErrorMessage()private SVNErrorMessageHTTPConnection. readData(java.io.InputStream is, java.lang.String method, java.lang.String path, org.xml.sax.helpers.DefaultHandler handler)SVNErrorMessageHTTPConnection. readData(HTTPRequest request, java.io.OutputStream dst)SVNErrorMessageHTTPConnection. readData(HTTPRequest request, java.lang.String method, java.lang.String path, org.xml.sax.helpers.DefaultHandler handler)SVNErrorMessageHTTPConnection. readError(HTTPRequest request, java.lang.String method, java.lang.String path)private SVNErrorMessageHTTPRequest. 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 voidHTTPSSLKeyManager. acknowledgeAndClearAuthentication(SVNErrorMessage errorMessage)voidHTTPRequest. dispatch(java.lang.String request, java.lang.String path, HTTPHeader header, int ok1, int ok2, SVNErrorMessage context)heart of http engine.private SVNErrorMessageHTTPRequest. readError(java.lang.String request, java.lang.String path, SVNErrorMessage context)HTTPStatusHTTPConnection. 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)HTTPStatusHTTPConnection. 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)HTTPStatusIHTTPConnection. 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)HTTPStatusIHTTPConnection. 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)voidHTTPStatus. 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 SVNErrorMessageFSErrors. errorAlreadyExists(FSRoot root, java.lang.String path, FSFS owner)static SVNErrorMessageFSErrors. errorConflict(java.lang.String path, java.lang.StringBuffer conflictPath)static SVNErrorMessageFSErrors. errorCorruptLockFile(java.lang.String path, FSFS owner)static SVNErrorMessageFSErrors. errorDanglingId(FSID id, FSFS owner)static SVNErrorMessageFSErrors. errorLockExpired(java.lang.String lockToken, FSFS owner)static SVNErrorMessageFSErrors. errorLockOwnerMismatch(java.lang.String username, java.lang.String lockOwner, FSFS owner)static SVNErrorMessageFSErrors. errorNoSuchLock(java.lang.String path, FSFS owner)static SVNErrorMessageFSErrors. errorNotDirectory(java.lang.String path, FSFS owner)static SVNErrorMessageFSErrors. errorNotFile(java.lang.String path, FSFS owner)static SVNErrorMessageFSErrors. errorNotFound(FSRoot root, java.lang.String path)static SVNErrorMessageFSErrors. errorNotMutable(long revision, java.lang.String path, FSFS owner)static SVNErrorMessageFSErrors. errorNotTxn()static SVNErrorMessageFSErrors. errorNoUser(FSFS owner)static SVNErrorMessageFSErrors. errorOutOfDate(java.lang.String path, SVNNodeKind kind)static SVNErrorMessageFSErrors. errorPathAlreadyLocked(java.lang.String path, java.lang.String owner, FSFS fsfsOwner)static SVNErrorMessageFSErrors. 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 longFSCommitter. commitTxn(boolean runPreCommitHook, boolean runPostCommitHook, SVNErrorMessage[] postCommitHookError, java.lang.StringBuffer conflictPath)static booleanFSErrors. isLockError(SVNErrorMessage err)static booleanFSErrors. 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 SVNErrorMessageFSRepresentationCacheManager. 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 SVNErrorMessageSVNAuthenticator. myLastErrorMethods in org.tmatesoft.svn.core.internal.io.svn that return SVNErrorMessage Modifier and Type Method Description private static SVNErrorMessageSVNReader. getErrorMessage(SVNItem item)protected SVNErrorMessageSVNAuthenticator. getLastError()protected SVNErrorMessageSVNPlainAuthenticator. readAuthResponse()Methods in org.tmatesoft.svn.core.internal.io.svn with parameters of type SVNErrorMessage Modifier and Type Method Description protected voidSVNAuthenticator. setLastError(SVNErrorMessage err)voidSVNConnection. 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 SVNErrorMessageDefaultSVNAuthenticationManager. myPreviousErrorMessageMethods in org.tmatesoft.svn.core.internal.wc that return SVNErrorMessage Modifier and Type Method Description private SVNErrorMessageSVNMergeDriver. 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 voidDefaultSVNAuthenticationManager. acknowledgeAuthentication(boolean accepted, java.lang.String kind, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication authentication)voidDefaultSVNAuthenticationManager.SimpleProxyManager. acknowledgeProxyContext(boolean accepted, SVNErrorMessage errorMessage)static SVNEventSVNEventFactory. createErrorEvent(SVNErrorMessage error, SVNEventAction expectedAction)static SVNEventSVNEventFactory. createLockEvent(java.io.File file, SVNEventAction action, SVNLock lock, SVNErrorMessage error)static SVNEventSVNEventFactory. createSVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range)static SVNEventSVNEventFactory. 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 SVNEventSVNEventFactory. 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 SVNEventSVNEventFactory. 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 SVNEventSVNEventFactory. 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 SVNEventSVNEventFactory. 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 voidSVNErrorManager. error(SVNErrorMessage err, java.lang.Throwable cause, java.util.logging.Level logLevel, SVNLogType logType)static voidSVNErrorManager. error(SVNErrorMessage err, java.lang.Throwable cause, SVNLogType logType)static voidSVNErrorManager. error(SVNErrorMessage err, java.util.logging.Level logLevel, SVNLogType logType)static voidSVNErrorManager. error(SVNErrorMessage err1, SVNErrorMessage err2, java.lang.Throwable cause, java.util.logging.Level logLevel, SVNLogType logType)static voidSVNErrorManager. error(SVNErrorMessage err1, SVNErrorMessage err2, java.lang.Throwable cause, SVNLogType logType)static voidSVNErrorManager. error(SVNErrorMessage err1, SVNErrorMessage err2, java.util.logging.Level logLevel, SVNLogType logType)static voidSVNErrorManager. error(SVNErrorMessage err1, SVNErrorMessage err2, SVNLogType logType)static voidSVNErrorManager. error(SVNErrorMessage err, SVNLogType logType)voidSVNMergeDriver.MergeInfoFetcher. handleError(java.io.File path, SVNErrorMessage error)voidSVNMergeDriver.SubTreeMergeInfoHandler. handleError(java.io.File path, SVNErrorMessage error)SVNAuthenticationDefaultSVNAuthenticationManager.CacheAuthenticationProvider. requestClientAuthentication(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored)SVNAuthenticationDefaultSVNAuthenticationManager.DumbAuthenticationProvider. requestClientAuthentication(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored)SVNAuthenticationDefaultSVNPersistentAuthenticationProvider. 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 voidISVNEntryHandler. handleError(java.io.File path, SVNErrorMessage error)voidSVNWCAccess.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 voidSVNChangelistClient16.SVNChangeListWalker. handleError(java.io.File path, SVNErrorMessage error)voidSVNWCClient16.PropFetchHandler. handleError(java.io.File path, SVNErrorMessage error)voidSVNWCClient16.PropSetHandler. handleError(java.io.File path, SVNErrorMessage error)voidSVNWCClient16.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 SVNErrorMessageSvnNgMergeDriver. 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 voidSvnNgSetLock. handleLock(java.lang.String path, SVNLock lock, SVNErrorMessage error)voidSvnNgSetLock. 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 voidSvnRemoteSetLock. handleLock(java.lang.String path, SVNLock lock, SVNErrorMessage error)voidSvnRemoteUnlock. handleLock(java.lang.String path, SVNLock lock, SVNErrorMessage error)voidSvnRemoteSetLock. handleUnlock(java.lang.String path, SVNLock lock, SVNErrorMessage error)voidSvnRemoteUnlock. 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 voidISVNLockHandler. handleLock(java.lang.String path, SVNLock lock, SVNErrorMessage error)Handles the path locked.voidISVNLockHandler. 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 SVNAuthenticationJavaHLAuthenticationProvider. 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.StringSVNClientImpl. getErrorMessageString(SVNErrorMessage errorMessage)SVNAuthenticationJavaHLAuthenticationProvider. 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 SVNErrorMessageSVNEvent. myErrorMessageMethods in org.tmatesoft.svn.core.wc that return SVNErrorMessage Modifier and Type Method Description SVNErrorMessageSVNEvent. 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 SVNErrorMessageSVNAdminEvent. myErrorMethods in org.tmatesoft.svn.core.wc.admin that return SVNErrorMessage Modifier and Type Method Description SVNErrorMessageSVNAdminEvent. 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.
-