Uses of Class
org.tmatesoft.svn.core.SVNURL
Packages that use SVNURL
Package
Description
This package mostly contains common classes as well as interfaces used
throughout all the library.
This package contains interfaces/classes used by the library to
authenticate a user to a repository server.
This package provides a low-level API for direct interacting with a Subversion repository on
the SVN protocol level.
This package provides an implementation of the native Subversion javahl
binding interface SVNClientInterface that is distributed within
the org.tigris.subversion.javahl package.
This package provides a high-level API for managing Working Copies in a way
compatible with the native SVN command line client.
This package provides API for administrative managing Subversion repositories on a local machine.
NEW: this package contains command-style API to perform most of
Subversion operations on the level of abstraction similar to that of the
command line client.
NEW: this package contains command-style API to perform most of
Subversion operations that works directly on local repository
on the level of abstraction similar to that of the command line client.
NEW: this package contains callback interfaces for the new WC2 API.
-
Uses of SVNURL in org.tmatesoft.svn.cli
Methods in org.tmatesoft.svn.cli that return SVNURLModifier and TypeMethodDescriptionprivate SVNURL
AbstractSVNCommandEnvironment.checkRootURLOfTarget
(SVNURL rootURL, java.lang.String target) AbstractSVNCommandEnvironment.getURLFromTarget
(java.lang.String target) private SVNURL
AbstractSVNCommandEnvironment.resolveRepositoryRelativeURL
(SVNURL rootURL, java.lang.String relativeURL) Methods in org.tmatesoft.svn.cli with parameters of type SVNURLModifier and TypeMethodDescriptionint
SVNConsoleAuthenticationProvider.acceptServerAuthentication
(SVNURL url, java.lang.String realm, java.lang.Object certificate, boolean resultMayBeStored) private SVNURL
AbstractSVNCommandEnvironment.checkRootURLOfTarget
(SVNURL rootURL, java.lang.String target) SVNConsoleAuthenticationProvider.requestClientAuthentication
(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored) private SVNURL
AbstractSVNCommandEnvironment.resolveRepositoryRelativeURL
(SVNURL rootURL, java.lang.String relativeURL) -
Uses of SVNURL in org.tmatesoft.svn.cli.svn
Fields in org.tmatesoft.svn.cli.svn declared as SVNURLMethods in org.tmatesoft.svn.cli.svn that return SVNURLModifier and TypeMethodDescriptionprotected SVNURL
SVNPropertiesCommand.getRevpropURL
(SVNRevision revision, java.util.Collection targets) Methods in org.tmatesoft.svn.cli.svn with parameters of type SVNURLModifier and TypeMethodDescriptionprotected SVNPropertyData
SVNPropertiesCommand.getURLProperty
(SVNURL url) void
SVNPropertiesCommand.handleProperty
(SVNURL url, SVNPropertyData property) -
Uses of SVNURL in org.tmatesoft.svn.core
Fields in org.tmatesoft.svn.core declared as SVNURLModifier and TypeFieldDescriptionprivate SVNURL
SVNDirEntry.myExternalParentUrl
private SVNURL
SVNDirEntry.myRepositoryRoot
private SVNURL
SVNDirEntry.myURL
Methods in org.tmatesoft.svn.core that return SVNURLModifier and TypeMethodDescriptionSVNURL.appendPath
(java.lang.String segment, boolean uriEncoded) Constructs a new SVNURL representation appending a new path segment to the path component of this representation.static SVNURL
SVNURL.create
(java.lang.String protocol, java.lang.String userInfo, java.lang.String host, int port, java.lang.String path, boolean uriEncoded) Creates a new SVNURL representation from the given url components.static SVNURL
SVNURL.fromFile
(java.io.File repositoryPath) Creates a "file:///" SVNURL representation given a filesystem style repository path.SVNDirEntry.getExternalParentUrl()
SVNDirEntry.getRepositoryRoot()
Returns the entry's repository root URL.SVNDirEntry.getURL()
Returns the entry's URL.static SVNURL
SVNURL.parseURIDecoded
(java.lang.String url) Deprecated.static SVNURL
SVNURL.parseURIEncoded
(java.lang.String url) Parses the given UTF-8 encoded url string and creates a new SVNURL representation for this url.SVNURL.removePathTail()
Constructs a new SVNURL representation removing a tail path segment from the path component of this representation.SVNURL.setPath
(java.lang.String path, boolean uriEncoded) Creates a new SVNURL object replacing a path component of this object with a new provided one.Methods in org.tmatesoft.svn.core with parameters of type SVNURLModifier and TypeMethodDescriptionvoid
SVNDirEntry.setExternalParentUrl
(SVNURL myExternalParentUrl) Constructors in org.tmatesoft.svn.core with parameters of type SVNURLModifierConstructorDescriptionSVNDirEntry
(SVNURL url, SVNURL repositoryRoot, java.lang.String name, SVNNodeKind kind, long size, boolean hasProperties, long revision, java.util.Date createdDate, java.lang.String lastAuthor) Constructs an instance of SVNDirEntry.SVNDirEntry
(SVNURL url, SVNURL repositoryRoot, java.lang.String name, SVNNodeKind kind, long size, boolean hasProperties, long revision, java.util.Date createdDate, java.lang.String lastAuthor, java.lang.String commitMessage) Constructs an instance of SVNDirEntry. -
Uses of SVNURL in org.tmatesoft.svn.core.auth
Fields in org.tmatesoft.svn.core.auth declared as SVNURLMethods in org.tmatesoft.svn.core.auth that return SVNURLMethods in org.tmatesoft.svn.core.auth with parameters of type SVNURLModifier and TypeMethodDescriptionint
ISVNAuthenticationProvider.acceptServerAuthentication
(SVNURL url, java.lang.String realm, java.lang.Object certificate, boolean resultMayBeStored) Checks a server authentication certificate and whether accepts it (if the client trusts it) or not.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
ISVNAuthenticationManagerExt.acknowledgeAuthentication
(boolean accepted, java.lang.String kind, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication authentication, SVNURL accessedLocation) void
ISVNAuthenticationManagerExt.acknowledgeConnectionSuccessful
(SVNURL url, java.lang.String method) BasicAuthenticationManager.getFirstAuthentication
(java.lang.String kind, java.lang.String realm, SVNURL url) Returns the first user's authentication credentials.ISVNAuthenticationManager.getFirstAuthentication
(java.lang.String kind, java.lang.String realm, SVNURL url) Retrieves the first user credential.BasicAuthenticationManager.getNextAuthentication
(java.lang.String kind, java.lang.String realm, SVNURL url) Returns next user authentication credentials.ISVNAuthenticationManager.getNextAuthentication
(java.lang.String kind, java.lang.String realm, SVNURL url) Retrieves the next user credential if the first try failed.BasicAuthenticationManager.getProxyManager
(SVNURL url) Returns itself as a proxy manager.ISVNAuthenticationManager.getProxyManager
(SVNURL url) Returns a proxy manager that keeps settings for that proxy server over which HTTP requests are send to a repository server.javax.net.ssl.TrustManager
BasicAuthenticationManager.getTrustManager
(SVNURL url) Returns null.javax.net.ssl.TrustManager
ISVNAuthenticationManager.getTrustManager
(SVNURL url) Returns a manager which handles trust data for the specifiedurl
.static SVNPasswordAuthentication
SVNPasswordAuthentication.newInstance
(java.lang.String userName, char[] password, boolean storageAllowed, SVNURL url, boolean isPartial) Creates a password user credential object given a username and password.static SVNSSHAuthentication
SVNSSHAuthentication.newInstance
(java.lang.String userName, char[] keyValue, char[] passphrase, int portNumber, boolean storageAllowed, SVNURL url, boolean isPartial) Creates a user credential object for authenticating over an ssh tunnel.static SVNSSHAuthentication
SVNSSHAuthentication.newInstance
(java.lang.String userName, char[] password, int portNumber, boolean storageAllowed, SVNURL url, boolean isPartial) Creates a user credential object for authenticating over an ssh tunnel.static SVNSSHAuthentication
SVNSSHAuthentication.newInstance
(java.lang.String userName, com.trilead.ssh2.auth.AgentProxy agentProxy, int portNumber, SVNURL url, boolean isPartial) Creates a user credential object for authenticating over an ssh tunnel.static SVNSSHAuthentication
SVNSSHAuthentication.newInstance
(java.lang.String userName, java.io.File keyFile, char[] passphrase, int portNumber, boolean storageAllowed, SVNURL url, boolean isPartial) Creates a user credential object for authenticating over an ssh tunnel.static SVNSSLAuthentication
SVNSSLAuthentication.newInstance
(byte[] cert, char[] password, boolean storageAllowed, SVNURL url, boolean isPartial) static SVNSSLAuthentication
SVNSSLAuthentication.newInstance
(java.io.File certFile, char[] password, boolean storageAllowed, SVNURL url, boolean isPartial) static SVNSSLAuthentication
SVNSSLAuthentication.newInstance
(java.lang.String kind, java.lang.String alias, boolean storageAllowed, SVNURL url, boolean isPartial) static SVNUserNameAuthentication
SVNUserNameAuthentication.newInstance
(java.lang.String userName, boolean storageAllowed, SVNURL url, boolean isPartial) Creates a username authentication credential.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.Constructors in org.tmatesoft.svn.core.auth with parameters of type SVNURLModifierConstructorDescriptionSVNAuthentication
(java.lang.String kind, java.lang.String userName, boolean storageAllowed, SVNURL url, boolean isPartial) Creates a username user credential object given a username.private
SVNPasswordAuthentication
(java.lang.String userName, char[] password, boolean storageAllowed, SVNURL url, boolean isPartial) SVNPasswordAuthentication
(java.lang.String userName, java.lang.String password, boolean storageAllowed, SVNURL url, boolean isPartial) Deprecated.private
SVNSSHAuthentication
(java.lang.String userName, char[] password, java.io.File keyFile, char[] keyValue, char[] passphrase, com.trilead.ssh2.auth.AgentProxy agentProxy, int portNumber, boolean storageAllowed, SVNURL url, boolean isPartial) SVNSSHAuthentication
(java.lang.String userName, char[] privateKey, java.lang.String passphrase, int portNumber, boolean storageAllowed, SVNURL url, boolean isPartial) Deprecated.Usemethod
SVNSSHAuthentication
(java.lang.String userName, com.trilead.ssh2.auth.AgentProxy agentProxy, int portNumber, SVNURL url, boolean isPartial) Deprecated.Usemethod
SVNSSHAuthentication
(java.lang.String userName, java.io.File keyFile, java.lang.String passphrase, int portNumber, boolean storageAllowed, SVNURL url, boolean isPartial) Deprecated.Usemethod
SVNSSHAuthentication
(java.lang.String userName, java.lang.String password, int portNumber, boolean storageAllowed, SVNURL url, boolean isPartial) Deprecated.SVNSSLAuthentication
(java.io.File certFile, java.lang.String password, boolean storageAllowed, SVNURL url, boolean isPartial) Deprecated.Usemethod
SVNSSLAuthentication
(java.lang.String sslKind, java.lang.String alias, boolean storageAllowed, SVNURL url, boolean isPartial) Deprecated.private
SVNSSLAuthentication
(java.lang.String sslKind, java.lang.String alias, byte[] cert, char[] password, boolean storageAllowed, SVNURL url, boolean isPartial) private
SVNSSLAuthentication
(java.lang.String sslKind, java.lang.String alias, java.io.File certFile, char[] password, boolean storageAllowed, SVNURL url, boolean isPartial) SVNUserNameAuthentication
(java.lang.String userName, boolean storageAllowed, SVNURL url, boolean isPartial) Deprecated. -
Uses of SVNURL in org.tmatesoft.svn.core.internal.io.dav
Fields in org.tmatesoft.svn.core.internal.io.dav declared as SVNURLModifier and TypeFieldDescriptionprivate SVNURL
DAVCommitEditor.myLocation
protected SVNURL
DAVConnection.myRepositoryRoot
Methods in org.tmatesoft.svn.core.internal.io.dav that return SVNURLModifier and TypeMethodDescriptionDAVConnection.getLocation()
DAVRepository.getRepositoryRoot
(boolean forceConnection) Methods in org.tmatesoft.svn.core.internal.io.dav with parameters of type SVNURLModifier and TypeMethodDescriptionDAVRepositoryFactory.createRepositoryImpl
(SVNURL location, ISVNSession options) void
DAVRepository.diff
(SVNURL url, long targetRevision, long revision, java.lang.String target, boolean ignoreAncestry, SVNDepth depth, boolean getContents, ISVNReporterBaton reporter, ISVNEditor editor) private void
DAVRepository.runReport
(SVNURL url, long targetRevision, java.lang.String target, java.lang.String dstPath, SVNDepth depth, boolean ignoreAncestry, boolean resourceWalk, boolean fetchContents, boolean sendCopyFromArgs, boolean sendAll, boolean closeEditorOnException, boolean spool, ISVNWorkingCopyContentMediator workingCopyContentMediator, ISVNReporterBaton reporter, ISVNEditor editor) void
DAVRepository.setRepositoryRoot
(SVNURL root) void
DAVRepository.update
(SVNURL url, long revision, java.lang.String target, SVNDepth depth, ISVNReporterBaton reporter, ISVNEditor editor) Constructors in org.tmatesoft.svn.core.internal.io.dav with parameters of type SVNURLModifierConstructorDescriptionprotected
DAVRepository
(IHTTPConnectionFactory connectionFactory, SVNURL location, ISVNSession options) -
Uses of SVNURL in org.tmatesoft.svn.core.internal.io.dav.http
Fields in org.tmatesoft.svn.core.internal.io.dav.http declared as SVNURLModifier and TypeFieldDescriptionprivate SVNURL
HTTPConnection.myHost
private final SVNURL
HTTPSSLKeyManager.url
Methods in org.tmatesoft.svn.core.internal.io.dav.http that return SVNURLMethods in org.tmatesoft.svn.core.internal.io.dav.http with parameters of type SVNURLModifier and TypeMethodDescriptionstatic SVNErrorMessage
HTTPRequest.createDefaultErrorMessage
(SVNURL host, java.lang.String path, HTTPStatus status, java.lang.String context, java.lang.Object[] contextObjects) Constructors in org.tmatesoft.svn.core.internal.io.dav.http with parameters of type SVNURLModifierConstructorDescriptionHTTPSSLKeyManager
(ISVNAuthenticationManager authenticationManager, java.lang.String realm, SVNURL url) -
Uses of SVNURL in org.tmatesoft.svn.core.internal.io.fs
Methods in org.tmatesoft.svn.core.internal.io.fs with parameters of type SVNURLModifier and TypeMethodDescriptionFSRepository.beginReport
(long revision, SVNURL url, java.lang.String target, boolean ignoreAncestry, boolean sendTextDeltas, boolean sendCopyFromArgs, SVNDepth depth, ISVNEditor editor) private SVNDirEntry
FSRepository.buildDirEntry
(FSEntry repEntry, SVNURL parentURL, FSRevisionNode entryNode, int entryFields) protected SVNRepository
FSRepositoryFactory.createRepositoryImpl
(SVNURL url, ISVNSession session) void
FSRepository.diff
(SVNURL url, long targetRevision, long revision, java.lang.String target, boolean ignoreAncestry, SVNDepth depth, boolean getContents, ISVNReporterBaton reporter, ISVNEditor editor) private java.util.Collection
FSRepository.getDirEntries
(FSRevisionNode parent, SVNURL parentURL, int entryFields) void
FSRepository.linkPath
(SVNURL url, java.lang.String path, java.lang.String lockToken, long revision, boolean startEmpty) void
FSRepository.linkPath
(SVNURL url, java.lang.String path, java.lang.String lockToken, long revision, SVNDepth depth, boolean startEmpty) void
FSTranslateReporter.linkPath
(SVNURL url, java.lang.String path, java.lang.String lockToken, long revision, boolean startEmpty) void
FSTranslateReporter.linkPath
(SVNURL url, java.lang.String path, java.lang.String lockToken, long revision, SVNDepth depth, boolean startEmpty) private void
FSRepository.makeReporterContext
(long targetRevision, java.lang.String target, SVNURL switchURL, SVNDepth depth, boolean ignoreAncestry, boolean textDeltas, boolean sendCopyFromArgs, ISVNEditor editor) void
FSRepository.update
(SVNURL url, long revision, java.lang.String target, SVNDepth depth, ISVNReporterBaton reporter, ISVNEditor editor) Constructors in org.tmatesoft.svn.core.internal.io.fs with parameters of type SVNURL -
Uses of SVNURL in org.tmatesoft.svn.core.internal.io.svn
Methods in org.tmatesoft.svn.core.internal.io.svn with parameters of type SVNURLModifier and TypeMethodDescriptionSVNRepositoryFactoryImpl.createRepositoryImpl
(SVNURL location, ISVNSession options) void
SVNRepositoryImpl.diff
(SVNURL url, long targetRevision, long revision, java.lang.String target, boolean ignoreAncestry, SVNDepth depth, boolean getContents, ISVNReporterBaton reporter, ISVNEditor editor) void
SVNRepositoryImpl.linkPath
(SVNURL url, java.lang.String path, java.lang.String lockToken, long revision, boolean startEmpty) void
SVNRepositoryImpl.linkPath
(SVNURL url, java.lang.String path, java.lang.String lockToken, long revision, SVNDepth depth, boolean startEmpty) private boolean
void
SVNRepositoryImpl.setLocation
(SVNURL url, boolean forceReconnect) void
SVNRepositoryImpl.update
(SVNURL url, long revision, java.lang.String target, SVNDepth depth, ISVNReporterBaton reporter, ISVNEditor editor) (package private) void
SVNRepositoryImpl.updateCredentials
(java.lang.String uuid, SVNURL rootURL) Constructors in org.tmatesoft.svn.core.internal.io.svn with parameters of type SVNURL -
Uses of SVNURL in org.tmatesoft.svn.core.internal.io.svn.sasl
Methods in org.tmatesoft.svn.core.internal.io.svn.sasl with parameters of type SVNURLModifier and TypeMethodDescriptionprotected javax.security.sasl.SaslClient
SVNSaslAuthenticator.createSaslClient
(java.util.List mechs, java.lang.String realm, SVNRepositoryImpl repos, SVNURL location) private static java.lang.String
SVNSaslAuthenticator.getFullRealmName
(SVNURL location, java.lang.String realm) -
Uses of SVNURL in org.tmatesoft.svn.core.internal.util
Methods in org.tmatesoft.svn.core.internal.util that return SVNURLModifier and TypeMethodDescriptionstatic SVNURL
SVNURLUtil.condenceURLs
(SVNURL[] urls, java.util.Collection condencedPaths, boolean removeRedundantURLs) static SVNURL
SVNURLUtil.getCommonURLAncestor
(SVNURL url1, SVNURL url2) Methods in org.tmatesoft.svn.core.internal.util with parameters of type SVNURLModifier and TypeMethodDescriptionstatic SVNURL
SVNURLUtil.condenceURLs
(SVNURL[] urls, java.util.Collection condencedPaths, boolean removeRedundantURLs) static SVNURL
SVNURLUtil.getCommonURLAncestor
(SVNURL url1, SVNURL url2) static java.lang.String
SVNURLUtil.getRelativeURL
(SVNURL parent, SVNURL child, boolean encoded) static boolean
SVNURLUtil.isAncestor
(SVNURL ancestor, SVNURL descendant) -
Uses of SVNURL in org.tmatesoft.svn.core.internal.wc
Fields in org.tmatesoft.svn.core.internal.wc declared as SVNURLModifier and TypeFieldDescriptionprivate SVNURL
SVNStatusReporter.myCommonAncestorLocation
private final SVNURL
SVNConflictVersion.myRepositoryRoot
protected SVNURL
SVNStatusEditor.myRepositoryRoot
private SVNURL
SVNStatusReporter.myRepositoryRoot
private SVNURL
SVNExternal.myResolvedURL
private SVNURL
SVNDiffStatusEditor.myRootURL
private SVNURL
SVNMergeDriver.SubTreeMergeInfoHandler.myTargetReposRoot
private final SVNURL
DefaultSVNHostOptions.myURL
private SVNURL
DefaultSVNSSLTrustManager.myURL
protected SVNURL
SVNMergeCallback.myURL
protected SVNURL
SVNMergeDriver.myURL
SVNRemoteStatusEditor.DirectoryInfo.myURL
SVNRemoteStatusEditor.FileInfo.myURL
private SVNURL
SVNMergeDriver.MergeSource.myURL1
private SVNURL
SVNMergeDriver.MergeSource.myURL2
Methods in org.tmatesoft.svn.core.internal.wc that return SVNURLModifier and TypeMethodDescriptionprivate SVNURL
SVNRemoteStatusEditor.DirectoryInfo.computeURL()
SVNConflictVersion.getRepositoryRoot()
Returns the repository root url.SVNExternal.getResolvedURL()
SVNPath.getURL()
SVNMergeDriver.MergeSource.getURL1()
SVNMergeDriver.MergeSource.getURL2()
SVNExternal.resolveURL
(SVNURL rootURL, SVNURL ownerURL) static SVNURL
SVNCommitUtil.translateCommitables
(SVNCommitItem[] items, java.util.Map decodedPaths) Methods in org.tmatesoft.svn.core.internal.wc with parameters of type SVNURLModifier and TypeMethodDescriptionint
DefaultSVNAuthenticationManager.CacheAuthenticationProvider.acceptServerAuthentication
(SVNURL url, java.lang.String r, java.lang.Object serverAuth, boolean resultMayBeStored) int
DefaultSVNAuthenticationManager.DumbAuthenticationProvider.acceptServerAuthentication
(SVNURL url, java.lang.String r, java.lang.Object serverAuth, boolean resultMayBeStored) int
DefaultSVNPersistentAuthenticationProvider.acceptServerAuthentication
(SVNURL url, java.lang.String r, java.lang.Object serverAuth, boolean resultMayBeStored) static void
SVNWCManager.add
(java.io.File path, SVNAdminArea parentDir, SVNURL copyFromURL, long copyFromRev, SVNDepth depth) static void
SVNWCManager.add
(java.io.File path, SVNAdminArea parentDir, SVNURL copyFromURL, SVNRevision copyFromRev, SVNDepth depth) private void
SVNMergeDriver.adjustDeletedSubTreeRanges
(SVNMergeDriver.MergePath child, SVNMergeDriver.MergePath parent, long revision1, long revision2, SVNURL primaryURL, SVNRepository repository) static SVNStatus
SVNStatusUtil.assembleStatus
(java.io.File file, SVNAdminArea dir, SVNEntry entry, SVNEntry parentEntry, SVNNodeKind fileKind, boolean special, boolean reportAll, boolean isIgnored, java.util.Map repositoryLocks, SVNURL reposRoot, SVNWCAccess wcAccess) java.util.Map
ISVNMergeStrategy.calculateImplicitMergeInfo
(SVNRepository repos, SVNURL url, long[] targetRev, long start, long end) java.util.Map
SVNMergeDriver.calculateImplicitMergeInfo
(SVNRepository repos, SVNURL url, long[] targetRev, long start, long end) private java.util.Map
SVNMergeDriver.calculateLeftHandSide
(SVNURL[] leftURL, long[] leftRev, java.lang.String targetReposRelPath, java.util.Collection subTreesWithMergeInfo, long targetRev, java.lang.String sourceReposRelPath, SVNURL sourceReposRoot, long sourceRev, SVNRepository sourceRepository, SVNRepository targetRepository) java.lang.Object[]
ISVNMergeStrategy.calculateRemainingRangeList
(java.io.File targetFile, SVNEntry entry, SVNURL sourceRoot, boolean[] indirect, SVNURL url1, long revision1, SVNURL url2, long revision2, SVNMergeRange range) java.lang.Object[]
SVNMergeDriver.calculateRemainingRangeList
(java.io.File targetFile, SVNEntry entry, SVNURL sourceRoot, boolean[] indirect, SVNURL url1, long revision1, SVNURL url2, long revision2, SVNMergeRange range) void
SVNMergeDriver.calculateRemainingRanges
(SVNMergeDriver.MergePath parent, SVNMergeDriver.MergePath child, SVNURL sourceRootURL, SVNURL url1, long revision1, SVNURL url2, long revision2, java.util.Map targetMergeInfo, SVNMergeRangeList implicitSrcGap, boolean isSubtree, boolean childInheritsImplicit, SVNEntry entry, SVNRepository repository) private java.util.Map
SVNCopyDriver.calculateTargetMergeInfo
(java.io.File srcFile, SVNWCAccess access, SVNURL srcURL, long srcRevision, SVNRepository repository, boolean noReposAccess) private SVNTreeConflictDescription
SVNUpdateEditor.checkTreeConflict
(java.io.File path, SVNEntry entry, SVNAdminArea parentArea, SVNLog log, SVNConflictAction action, SVNNodeKind theirKind, SVNURL theirURL) private java.util.List
SVNMergeDriver.combineRangeWithSegments
(SVNMergeRange range, SVNLocationSegment[] segments, SVNURL sourceRootURL) static SVNCommitInfo
SVNCommitter.commit
(java.util.Collection tmpFiles, java.util.Map commitItems, SVNURL url, ISVNEditor commitEditor, ISVNEventHandler eventHandler) DefaultSVNOptions.createTunnelConnector
(SVNURL url) private void
SVNUpdateEditor.doDeleteEntry
(java.lang.String path, SVNAdminArea parentArea, SVNUpdateEditor.SVNDirectoryInfo parent, SVNURL theirURL) protected void
SVNMergeDriver.doDirectoryMerge
(java.util.Map resultCatalog, SVNURL url1, long revision1, SVNURL url2, long revision2, SVNEntry parentEntry, SVNAdminArea adminArea, SVNDepth depth) protected void
SVNMergeDriver.doDirectoryMerge
(SVNURL url1, long revision1, SVNURL url2, long revision2, SVNEntry parentEntry, SVNAdminArea adminArea, SVNDepth depth) Deprecated.protected void
SVNMergeDriver.doFileMerge
(java.util.Map resultCatalog, SVNURL url1, long revision1, SVNURL url2, long revision2, java.io.File targetWCPath, SVNAdminArea adminArea, boolean sourcesRelated) protected void
SVNMergeDriver.doFileMerge
(SVNURL url1, long revision1, SVNURL url2, long revision2, java.io.File targetWCPath, SVNAdminArea adminArea, boolean sourcesRelated) Deprecated.protected void
SVNMergeDriver.doMergeInfoUnawareDirectoryMerge
(SVNURL url1, long revision1, SVNURL url2, long revision2, SVNAdminArea adminArea, SVNDepth depth) ISVNMergeStrategy.driveMergeReportEditor
(java.io.File targetWCPath, SVNURL url1, long revision1, SVNURL url2, long revision2, java.util.List childrenWithMergeInfo, boolean isRollBack, SVNDepth depth, SVNAdminArea adminArea, SVNMergeCallback mergeCallback, ISVNReusableEditor editor) SVNMergeDriver.driveMergeReportEditor
(java.io.File targetWCPath, SVNURL url1, long revision1, SVNURL url2, long revision2, java.util.List childrenWithMergeInfo, boolean isRollBack, SVNDepth depth, SVNAdminArea adminArea, SVNMergeCallback mergeCallback, ISVNReusableEditor editor) protected SVNRepository
SVNMergeDriver.ensureRepository
(SVNRepository repository, SVNURL url) protected void
SVNMergeDriver.findGapsInMergeSourceHistory
(long[] gap, java.lang.String mergeSrcCanonPath, SVNURL url1, long rev1, SVNURL url2, long rev2, SVNRepository repos) private void
SVNMergeDriver.fixDeletedSubtreeRanges
(SVNURL url1, long revision1, SVNURL url2, long revision2, SVNRepository repository) private java.lang.String
DefaultSVNConnectionOptions.getAuthStorageEnabledOption
(SVNURL url) java.util.Collection<java.lang.String>
DefaultSVNAuthenticationManager.getAuthTypes
(SVNURL url) java.util.Collection
DefaultSVNConnectionOptions.getAuthTypes
(SVNURL url) java.util.Collection
ISVNConnectionOptions.getAuthTypes
(SVNURL url) int
DefaultSVNConnectionOptions.getConnectTimeout
(SVNURL url) int
ISVNConnectionOptions.getConnectTimeout
(SVNURL url) private java.lang.String
SVNCommitter.getCopyFromPath
(SVNURL url) protected SVNLocationEntry
SVNMergeDriver.getCopySource
(java.io.File path, SVNURL url, SVNRevision revision) protected SVNSSHAuthentication
DefaultSVNAuthenticationManager.getDefaultSSHAuthentication
(SVNURL url) DefaultSVNAuthenticationManager.getFirstAuthentication
(java.lang.String kind, java.lang.String realm, SVNURL url) java.util.Map
SVNMergeDriver.getHistoryAsMergeInfo
(SVNURL url, java.io.File path, SVNRevision pegRevision, long rangeYoungest, long rangeOldest, SVNRepository repos, SVNWCAccess access) DefaultSVNAuthenticationManager.ExtendedHostOptionsProvider.getHostOptions
(SVNURL url) DefaultSVNHostOptionsProvider.getHostOptions
(SVNURL url) ISVNHostOptionsProvider.getHostOptions
(SVNURL url) protected SVNLock
static SVNLock
void
SVNMergeDriver.getLogEligibleMergeInfo
(java.io.File path, SVNRevision pegRevision, SVNURL mergeSrcURL, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) void
SVNMergeDriver.getLogEligibleMergeInfo
(SVNURL url, SVNRevision pegRevision, java.io.File mergeSrcPath, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) void
SVNMergeDriver.getLogEligibleMergeInfo
(SVNURL url, SVNRevision pegRevision, SVNURL mergeSrcURL, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) void
SVNMergeDriver.getLogMergedMergeInfo
(java.io.File path, SVNRevision pegRevision, SVNURL mergeSrcURL, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) void
SVNMergeDriver.getLogMergedMergeInfo
(SVNURL url, SVNRevision pegRevision, java.io.File mergeSrcPath, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) void
SVNMergeDriver.getLogMergedMergeInfo
(SVNURL url, SVNRevision pegRevision, SVNURL mergeSrcURL, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) protected void
SVNMergeDriver.getLogsForMergeInfoRangeList
(SVNURL reposRootURL, java.lang.String[] paths, SVNMergeRangeList rangeList, boolean discoverChangedPaths, java.lang.String[] revProps, ISVNLogEntryHandler handler) java.util.Map
SVNMergeDriver.getMergedMergeInfo
(SVNURL url, SVNRevision pegRevision) Deprecated.protected java.util.Map
SVNMergeDriver.getMergeInfo
(java.io.File path, SVNRevision pegRevision, SVNURL[] repositoryRoot) protected java.util.Map
SVNMergeDriver.getMergeInfo
(SVNURL url, SVNRevision pegRevision, SVNURL[] repositoryRoot) ISVNMergeStrategy.getMergeInfoEntryHandler
(java.lang.String mergeSrcPath, SVNURL sourceRootURL, long revision1, long revision2, SVNRepository repository, SVNDepth depth, java.util.List childrenWithMergeInfo) SVNMergeDriver.getMergeInfoEntryHandler
(java.lang.String mergeSrcPath, SVNURL sourceRootURL, long revision1, long revision2, SVNRepository repository, SVNDepth depth, java.util.List childrenWithMergeInfo) private java.util.List
SVNMergeDriver.getMergeInfoPaths
(java.util.List children, java.lang.String mergeSrcPath, SVNEntry entry, SVNURL sourceRootURL, long revision1, long revision2, boolean honorMergeInfo, SVNRepository repository, SVNDepth depth) DefaultSVNAuthenticationManager.getNextAuthentication
(java.lang.String kind, java.lang.String realm, SVNURL url) java.lang.String
DefaultSVNConnectionOptions.getProxyHost
(SVNURL url) java.lang.String
ISVNConnectionOptions.getProxyHost
(SVNURL url) DefaultSVNAuthenticationManager.getProxyManager
(SVNURL url) private java.lang.String
DefaultSVNConnectionOptions.getProxyOption
(SVNURL url, java.lang.String optionName, java.lang.String systemProperty) java.lang.String
DefaultSVNConnectionOptions.getProxyPassword
(SVNURL url) java.lang.String
ISVNConnectionOptions.getProxyPassword
(SVNURL url) java.lang.String
DefaultSVNConnectionOptions.getProxyPort
(SVNURL url) java.lang.String
ISVNConnectionOptions.getProxyPort
(SVNURL url) java.lang.String
DefaultSVNConnectionOptions.getProxyUserName
(SVNURL url) java.lang.String
ISVNConnectionOptions.getProxyUserName
(SVNURL url) int
DefaultSVNConnectionOptions.getReadTimeout
(SVNURL url) int
ISVNConnectionOptions.getReadTimeout
(SVNURL url) java.io.File[]
DefaultSVNConnectionOptions.getSSLAuthorityFiles
(SVNURL url) java.io.File[]
ISVNConnectionOptions.getSSLAuthorityFiles
(SVNURL url) java.lang.String
DefaultSVNConnectionOptions.getSSLClientCertFile
(SVNURL url) java.lang.String
ISVNConnectionOptions.getSSLClientCertFile
(SVNURL url) java.lang.String
DefaultSVNConnectionOptions.getSSLClientCertPassword
(SVNURL url) java.lang.String
ISVNConnectionOptions.getSSLClientCertPassword
(SVNURL url) javax.net.ssl.TrustManager
DefaultSVNAuthenticationManager.getTrustManager
(SVNURL url) java.lang.String
DefaultSVNConnectionOptions.getUserName
(SVNURL url) java.lang.String
ISVNConnectionOptions.getUserName
(SVNURL url) private SVNLocationEntry
SVNMergeDriver.getYoungestCommonAncestor
(java.io.File path1, SVNURL url1, long revision1, java.io.File path2, SVNURL url2, long revision2) boolean
DefaultSVNConnectionOptions.hasAuthStorageEnabledOption
(SVNURL url) boolean
DefaultSVNConnectionOptions.isAuthStorageEnabled
(SVNURL url) boolean
ISVNConnectionOptions.isAuthStorageEnabled
(SVNURL url) boolean
DefaultSVNConnectionOptions.isStorePasswords
(SVNURL url) boolean
ISVNConnectionOptions.isStorePasswords
(SVNURL url) boolean
DefaultSVNConnectionOptions.isStoreSSLClientCertificatePassphrases
(SVNURL url) boolean
ISVNConnectionOptions.isStoreSSLClientCertificatePassphrases
(SVNURL url) void
SVNStatusReporter.linkPath
(SVNURL url, java.lang.String path, java.lang.String lockToken, long revision, boolean startEmpty) void
SVNStatusReporter.linkPath
(SVNURL url, java.lang.String path, java.lang.String lockToken, long revision, SVNDepth depth, boolean startEmpty) private void
SVNMergeDriver.mergeCousinsAndSupplementMergeInfo
(java.io.File targetWCPath, SVNEntry entry, SVNAdminArea adminArea, SVNRepository repository1, SVNRepository repository2, SVNURL url1, long rev1, SVNURL url2, long rev2, long youngestCommonRev, SVNURL sourceReposRoot, SVNURL wcReposRoot, SVNDepth depth, boolean ignoreAncestry, boolean force, boolean recordOnly, boolean dryRun) private java.util.List
SVNMergeDriver.normalizeMergeSources
(java.io.File source, SVNURL sourceURL, SVNURL sourceRootURL, SVNRevision pegRevision, java.util.Collection rangesToMerge, SVNRepository repository) private static SVNPropertyValue
SVNExternalsUtil.pinExternalProps
(SVNWCContext context, SvnRepositoryAccess repositoryAccess, SVNPropertyValue externalsPropValue, java.util.Map<SvnTarget, java.util.List<SVNExternal>> externalsToPin, SVNURL reposRootUrl, SvnTarget localAbsPathOrUrl) private void
SVNMergeDriver.populateRemainingRanges
(java.util.List childrenWithMergeInfo, SVNURL sourceRootURL, SVNURL url1, long revision1, SVNURL url2, long revision2, boolean honorMergeInfo, SVNRepository repository, java.lang.String parentMergeSrcCanonPath) private SVNPasswordAuthentication
DefaultSVNPersistentAuthenticationProvider.readSSLPassphrase
(java.lang.String kind, java.lang.String realm, boolean storageAllowed, SVNURL url) private void
SVNMergeDriver.removeNoOpSubtreeRanges
(SVNURL url1, long revision1, SVNURL url2, long revision2, SVNRepository repository) DefaultSVNAuthenticationManager.CacheAuthenticationProvider.requestClientAuthentication
(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored) DefaultSVNAuthenticationManager.DumbAuthenticationProvider.requestClientAuthentication
(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored) DefaultSVNPersistentAuthenticationProvider.requestClientAuthentication
(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored) static java.util.Map<java.lang.String,
SVNPropertyValue> SVNExternalsUtil.resolvePinnedExternals
(SVNWCContext context, SvnRepositoryAccess repositoryAccess, java.util.Map<SvnTarget, java.util.List<SVNExternal>> externalsToPin, SvnTarget pairSource, SvnTarget pairDst, long pairSourceRevision, SVNRepository svnRepository, SVNURL reposRootUrl) SVNExternal.resolveURL
(SVNURL rootURL, SVNURL ownerURL) protected void
SVNMergeDriver.runMerge
(SVNURL url1, SVNRevision revision1, SVNURL url2, SVNRevision revision2, java.io.File targetWCPath, SVNDepth depth, boolean dryRun, boolean force, boolean ignoreAncestry, boolean recordOnly) protected void
SVNMergeDriver.runMergeReintegrate
(SVNURL srcURL, java.io.File srcPath, SVNRevision pegRevision, java.io.File targetWCPath, boolean dryRun) protected void
SVNMergeDriver.runPeggedMerge
(SVNURL srcURL, java.io.File srcPath, java.util.Collection rangesToMerge, SVNRevision pegRevision, java.io.File targetWCPath, SVNDepth depth, boolean dryRun, boolean force, boolean ignoreAncestry, boolean recordOnly) private void
SVNUpdateEditor.scheduleExistingEntryForReAdd
(SVNEntry entry, java.io.File path, SVNURL theirURL, boolean modifyCopyFrom) void
SVNRemoteStatusEditor.setRepositoryInfo
(SVNURL root, java.util.Map repositoryLocks) void
SVNStatusEditor.setRepositoryInfo
(SVNURL root, java.util.Map repositoryLocks) java.util.Collection
SVNMergeDriver.suggestMergeSources
(SVNURL url, SVNRevision pegRevision) Deprecated.boolean
DefaultSVNConnectionOptions.trustDefaultSSLCertificateAuthority
(SVNURL url) boolean
ISVNConnectionOptions.trustDefaultSSLCertificateAuthority
(SVNURL url) Constructors in org.tmatesoft.svn.core.internal.wc with parameters of type SVNURLModifierConstructorDescriptionDefaultSVNHostOptions
(SVNCompositeConfigFile serversFile, SVNURL url) DefaultSVNSSLTrustManager
(java.io.File authDir, SVNURL url, java.io.File[] serverCertFiles, boolean useKeyStore, DefaultSVNAuthenticationManager authManager) ExtendedHostOptions
(SVNCompositeConfigFile serversFile, SVNURL url) SubTreeMergeInfoHandler
(java.io.File targetPath, SVNURL targetReposRoot) SVNConflictVersion
(SVNURL repositoryRoot, java.lang.String path, long pegRevision, SVNNodeKind kind) Creates a newSVNConflictVersion
.SVNMergeCallback
(SVNAdminArea adminArea, SVNURL url, boolean force, boolean dryRun, SVNDiffOptions options, java.util.Map conflictedPathsGetter, SVNMergeDriver mergeDriver) SVNMergeCallback15
(SVNAdminArea adminArea, SVNURL url, boolean force, boolean dryRun, SVNDiffOptions options, java.util.Map conflictedPathsGetter, SVNMergeDriver mergeDriver) -
Uses of SVNURL in org.tmatesoft.svn.core.internal.wc.admin
Fields in org.tmatesoft.svn.core.internal.wc.admin declared as SVNURLModifier and TypeFieldDescriptionprivate SVNURL
SVNTranslator.SVNKeywordFormatter.locationUrl
private SVNURL
SVNTranslator.SVNKeywordFormatter.repositoryRootUrl
Methods in org.tmatesoft.svn.core.internal.wc.admin that return SVNURLModifier and TypeMethodDescriptionSVNEntry.getCopyFromSVNURL()
SVNEntry.getRepositoryRootURL()
SVNEntry.getSVNURL()
Methods in org.tmatesoft.svn.core.internal.wc.admin with parameters of type SVNURLModifier and TypeMethodDescriptionSVNWCAccess.createMergeCallback
(SVNMergeDriver mergeDriver, SVNAdminArea adminArea, SVNURL url, SVNDiffOptions mergeOptions, java.util.Map conflictedPaths, boolean force, boolean dryRun) static void
SVNAdminAreaFactory.createVersionedDirectory
(java.io.File path, SVNURL url, SVNURL rootURL, java.lang.String uuid, long revNumber, SVNDepth depth) abstract void
SVNAdminArea.setFileExternalLocation
(java.lang.String name, SVNURL url, SVNRevision pegRevision, SVNRevision revision, SVNURL reposRootURL) void
SVNAdminArea14.setFileExternalLocation
(java.lang.String name, SVNURL url, SVNRevision pegRevision, SVNRevision revision, SVNURL reposRootURL) void
SVNAdminArea16.setFileExternalLocation
(java.lang.String name, SVNURL url, SVNRevision pegRevision, SVNRevision revision, SVNURL reposRootURL) void
SVNXMLAdminArea.setFileExternalLocation
(java.lang.String name, SVNURL url, SVNRevision pegRevision, SVNRevision revision, SVNURL reposRootURL) void
SVNWCAccess.setRepositoryRoot
(java.io.File path, SVNURL reposRoot) boolean
SVNEntry.setRepositoryRootURL
(SVNURL url) Constructors in org.tmatesoft.svn.core.internal.wc.admin with parameters of type SVNURLModifierConstructorDescriptionprivate
SVNKeywordFormatter
(boolean expand, boolean expandCustomKeywords, SVNURL locationUrl, SVNURL repositoryRootUrl, java.lang.String authorString, java.lang.String dateString, java.lang.String revisionString, ISVNOptions options) -
Uses of SVNURL in org.tmatesoft.svn.core.internal.wc16
Fields in org.tmatesoft.svn.core.internal.wc16 declared as SVNURLModifier and TypeFieldDescriptionprivate SVNURL
SVNBasicDelegate.SVNRepositoryLocation.myURL
SVNUpdateClient16.ExternalDiff.ownerURL
SVNUpdateClient16.ExternalDiff.rootURL
Methods in org.tmatesoft.svn.core.internal.wc16 that return SVNURLModifier and TypeMethodDescriptionstatic SVNURL
SVNUpdateClient16.canonicalizeURL
(SVNURL url, boolean omitDefaultPort) private SVNURL
SVNWCClient16.collectLockInfo
(SVNWCAccess wcAccess, java.io.File[] files, java.util.Map lockInfo, java.util.Map lockPaths, boolean lock, boolean stealLock) protected SVNURL
SVNBasicDelegate.deriveLocation
(java.io.File path, SVNURL url, long[] pegRevisionNumber, SVNRevision pegRevision, SVNRepository repos, SVNWCAccess access) protected SVNURL
SVNBasicDelegate.ensureSessionURL
(SVNRepository repository, SVNURL url) protected SVNURL
SVNBasicDelegate.getEntryLocation
(java.io.File path, SVNEntry entry, long[] revNum, SVNRevision pegRevision) private SVNURL
SVNUpdateClient16.getOwnerURL
(java.io.File root) SVNBasicDelegate.getReposRoot
(java.io.File path, SVNURL url, SVNRevision pegRevision, SVNAdminArea adminArea, SVNWCAccess access) Returns the root of the repository.protected SVNURL
SVNBasicDelegate.getURL
(java.io.File path) SVNBasicDelegate.SVNRepositoryLocation.getURL()
Methods in org.tmatesoft.svn.core.internal.wc16 that return types with arguments of type SVNURLModifier and TypeMethodDescriptionjava.util.Map<SVNURL,
SVNMergeRangeList> SVNDiffClient16.doGetMergedMergeInfo
(java.io.File path, SVNRevision pegRevision) Returns mergeinfo as aMap
with merge source URLs (asSVNURL
) mapped to range lists (SVNMergeRangeList
).java.util.Map<SVNURL,
SVNMergeRangeList> SVNDiffClient16.doGetMergedMergeInfo
(SVNURL url, SVNRevision pegRevision) Returns mergeinfo as aMap
with merge source URLs (asSVNURL
) mapped to range lists (SVNMergeRangeList
).java.util.Collection<SVNURL>
SVNDiffClient16.doSuggestMergeSources
(java.io.File path, SVNRevision pegRevision) Returns a collection of potential merge sources (expressed as full repositoryURLs
) forpath
atpegRevision
.java.util.Collection<SVNURL>
SVNDiffClient16.doSuggestMergeSources
(SVNURL url, SVNRevision pegRevision) Returns a collection of potential merge sources (expressed as full repositoryURLs
) forurl
atpegRevision
.Methods in org.tmatesoft.svn.core.internal.wc16 with parameters of type SVNURLModifier and TypeMethodDescriptionprivate void
SVNCommitClient16.addURLParents
(java.util.List targets, SVNURL url) static SVNURL
SVNUpdateClient16.canonicalizeURL
(SVNURL url, boolean omitDefaultPort) boolean
SVNUpdateClient16.ExternalDiff.compareExternals
(SVNURL oldURL, SVNURL newURL) protected SVNRepository
SVNBasicDelegate.createRepository
(SVNURL url, java.io.File path, SVNAdminArea area, SVNRevision pegRevision, SVNRevision revision, long[] pegRev) protected SVNRepository
SVNBasicDelegate.createRepository
(SVNURL url, java.io.File path, SVNWCAccess access, boolean mayReuse) protected SVNRepository
SVNBasicDelegate.createRepository
(SVNURL url, java.lang.String uuid, boolean mayReuse) protected SVNURL
SVNBasicDelegate.deriveLocation
(java.io.File path, SVNURL url, long[] pegRevisionNumber, SVNRevision pegRevision, SVNRepository repos, SVNWCAccess access) void
SVNLogClient16.doAnnotate
(SVNURL url, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, boolean ignoreMimeType, boolean includeMergedRevisions, ISVNAnnotateHandler handler, java.lang.String inputEncoding) Invokeshandler
on each line-blame item associated with revisionendRevision
ofurl
, usingstartRevision
as the default source of all blame.void
SVNLogClient16.doAnnotate
(SVNURL url, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, boolean ignoreMimeType, ISVNAnnotateHandler handler, java.lang.String inputEncoding) Obtains annotation information for each file text line from a repository and passes it to a provided annotation handler.void
SVNLogClient16.doAnnotate
(SVNURL url, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, ISVNAnnotateHandler handler) Obtains annotation information for each file text line from a repository and passes it to a provided annotation handler.void
SVNLogClient16.doAnnotate
(SVNURL url, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, ISVNAnnotateHandler handler, java.lang.String inputEncoding) Obtains annotation information for each file text line from a repository and passes it to a provided annotation handler.long
SVNUpdateClient16.doCheckout
(SVNURL url, java.io.File dstPath, SVNRevision pegRevision, SVNRevision revision, boolean recursive) Deprecated.long
SVNUpdateClient16.doCheckout
(SVNURL url, java.io.File dstPath, SVNRevision pegRevision, SVNRevision revision, boolean recursive, boolean force) Deprecated.long
SVNUpdateClient16.doCheckout
(SVNURL url, java.io.File dstPath, SVNRevision pegRevision, SVNRevision revision, SVNDepth depth, boolean allowUnversionedObstructions) Checks out a working copy ofurl
atrevision
, looked up atpegRevision
, usingdstPath
as the root directory of the newly checked out working copy.SVNCopyClient16.doCopy
(SVNCopySource[] sources, SVNURL dst, boolean isMove, boolean makeParents, boolean failWhenDstExists, boolean pinExternals, java.util.Map<SvnTarget, java.util.List<SVNExternal>> externalsToPin, java.lang.String commitMessage, SVNProperties revisionProperties) SVNCopyClient16.doCopy
(SVNCopySource[] sources, SVNURL dst, boolean isMove, boolean makeParents, boolean failWhenDstExists, java.lang.String commitMessage, SVNProperties revisionProperties) Copies each source insources
todst
.Committs removing specified URL-paths from the repository.SVNCommitClient16.doDelete
(SVNURL[] urls, java.lang.String commitMessage, SVNProperties revisionProperties) Deletes items from a repository.void
SVNDiffClient16.doDiff
(java.io.File path1, SVNRevision rN, SVNURL url2, SVNRevision rM, boolean recursive, boolean useAncestry, java.io.OutputStream result) void
SVNDiffClient16.doDiff
(java.io.File path1, SVNRevision rN, SVNURL url2, SVNRevision rM, SVNDepth depth, boolean useAncestry, java.io.OutputStream result, java.util.Collection changeLists) Produces diff output which describes the delta betweenpath1
/rN
andurl2
/rM
.void
SVNDiffClient16.doDiff
(SVNURL url1, SVNRevision rN, java.io.File path2, SVNRevision rM, boolean recursive, boolean useAncestry, java.io.OutputStream result) void
SVNDiffClient16.doDiff
(SVNURL url1, SVNRevision rN, java.io.File path2, SVNRevision rM, SVNDepth depth, boolean useAncestry, java.io.OutputStream result, java.util.Collection changeLists) Produces diff output which describes the delta betweenurl1
/rN
andpath2
/rM
.void
SVNDiffClient16.doDiff
(SVNURL url1, SVNRevision rN, SVNURL url2, SVNRevision rM, boolean recursive, boolean useAncestry, java.io.OutputStream result) Deprecated.void
SVNDiffClient16.doDiff
(SVNURL url1, SVNRevision rN, SVNURL url2, SVNRevision rM, SVNDepth depth, boolean useAncestry, java.io.OutputStream result) Produces diff output which describes the delta betweenurl1
/rN
andurl2
/rM
.void
SVNDiffClient16.doDiff
(SVNURL url, SVNRevision pegRevision, SVNRevision rN, SVNRevision rM, boolean recursive, boolean useAncestry, java.io.OutputStream result) Deprecated.void
SVNDiffClient16.doDiff
(SVNURL url, SVNRevision pegRevision, SVNRevision rN, SVNRevision rM, SVNDepth depth, boolean useAncestry, java.io.OutputStream result) Produces diff output which describes the delta betweenurl
in peg revisionpegRevision
, as it changed betweenrN
andrM
.void
SVNDiffClient16.doDiffStatus
(java.io.File path1, SVNRevision rN, SVNURL url2, SVNRevision rM, boolean recursive, boolean useAncestry, ISVNDiffStatusHandler handler) void
SVNDiffClient16.doDiffStatus
(java.io.File path1, SVNRevision rN, SVNURL url2, SVNRevision rM, SVNDepth depth, boolean useAncestry, ISVNDiffStatusHandler handler) Produces a diff summary which lists the changed items betweenpath1
/rN
andurl2
/rM
without creating text deltas.void
SVNDiffClient16.doDiffStatus
(SVNURL url1, SVNRevision rN, java.io.File path2, SVNRevision rM, boolean recursive, boolean useAncestry, ISVNDiffStatusHandler handler) void
SVNDiffClient16.doDiffStatus
(SVNURL url1, SVNRevision rN, java.io.File path2, SVNRevision rM, SVNDepth depth, boolean useAncestry, ISVNDiffStatusHandler handler) Produces a diff summary which lists the changed items betweenurl1
/rN
andpath2
/rM
without creating text deltas.void
SVNDiffClient16.doDiffStatus
(SVNURL url1, SVNRevision rN, SVNURL url2, SVNRevision rM, boolean recursive, boolean useAncestry, ISVNDiffStatusHandler handler) void
SVNDiffClient16.doDiffStatus
(SVNURL url1, SVNRevision rN, SVNURL url2, SVNRevision rM, SVNDepth depth, boolean useAncestry, ISVNDiffStatusHandler handler) Produces a diff summary which lists the changed items betweenurl1
/rN
andurl2
/rM
without creating text deltas.void
SVNDiffClient16.doDiffStatus
(SVNURL url, SVNRevision rN, SVNRevision rM, SVNRevision pegRevision, SVNDepth depth, boolean useAncestry, ISVNDiffStatusHandler handler) Produces a diff summary which lists the changed items betweenurl
in peg revisionpegRevision
, as it changed betweenrN
andrM
.private void
SVNDiffClient16.doDiffURLURL
(SVNURL url1, java.io.File path1, SVNRevision revision1, SVNURL url2, java.io.File path2, SVNRevision revision2, SVNRevision pegRevision, SVNDepth depth, boolean useAncestry, java.io.OutputStream result) private void
SVNDiffClient16.doDiffURLURL
(SVNURL url1, java.io.File path1, SVNRevision revision1, SVNURL url2, java.io.File path2, SVNRevision revision2, SVNRevision pegRevision, SVNDepth depth, boolean useAncestry, ISVNDiffStatusHandler handler) private void
SVNDiffClient16.doDiffURLWC
(SVNURL url1, SVNRevision revision1, SVNRevision pegRevision, java.io.File path2, SVNRevision revision2, boolean reverse, SVNDepth depth, boolean useAncestry, java.io.OutputStream result, java.util.Collection changeLists) long
SVNUpdateClient16.doExport
(SVNURL url, java.io.File dstPath, SVNRevision pegRevision, SVNRevision revision, java.lang.String eolStyle, boolean force, boolean recursive) long
SVNUpdateClient16.doExport
(SVNURL url, java.io.File dstPath, SVNRevision pegRevision, SVNRevision revision, java.lang.String eolStyle, boolean overwrite, SVNDepth depth) Exports the contents of a subversion repository into a 'clean' directory (meaning a directory with no administrative directories).void
SVNWCClient16.doGetFileContents
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean expandKeywords, java.io.OutputStream dst) Outputs the content of file identified byurl
andrevision
to the streamdst
.void
SVNDiffClient16.doGetLogEligibleMergeInfo
(java.io.File path, SVNRevision pegRevision, SVNURL mergeSrcURL, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Drives a log entryhandler
with the revisions eligible for merge frommergeSrcURL
(as ofsrcPegRevision
) intopath
(as ofpegRevision
).void
SVNDiffClient16.doGetLogEligibleMergeInfo
(SVNURL url, SVNRevision pegRevision, java.io.File mergeSrcPath, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Drives a log entryhandler
with the revisions eligible for merge frommergeSrcPath
(as ofsrcPegRevision
) intourl
(as ofpegRevision
).void
SVNDiffClient16.doGetLogEligibleMergeInfo
(SVNURL url, SVNRevision pegRevision, SVNURL mergeSrcURL, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Drives a log entryhandler
with the revisions eligible for merge frommergeSrcURL
(as ofsrcPegRevision
) intourl
(as ofpegRevision
).void
SVNDiffClient16.doGetLogMergedMergeInfo
(java.io.File path, SVNRevision pegRevision, SVNURL mergeSrcURL, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Drives a log entryhandler
with the revisions merged frommergeSrcURL
(as ofsrcPegRevision
) intopath
(as ofpegRevision
).void
SVNDiffClient16.doGetLogMergedMergeInfo
(SVNURL url, SVNRevision pegRevision, java.io.File mergeSrcPath, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Drives a log entryhandler
with the revisions merged frommergeSrcPath
(as ofsrcPegRevision
) intourl
(as ofpegRevision
).void
SVNDiffClient16.doGetLogMergedMergeInfo
(SVNURL url, SVNRevision pegRevision, SVNURL mergeSrcURL, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Drives a log entryhandler
with the revisions merged frommergeSrcURL
(as ofsrcPegRevision
) intourl
(as ofpegRevision
).java.util.Map<SVNURL,
SVNMergeRangeList> SVNDiffClient16.doGetMergedMergeInfo
(SVNURL url, SVNRevision pegRevision) Returns mergeinfo as aMap
with merge source URLs (asSVNURL
) mapped to range lists (SVNMergeRangeList
).SVNWCClient16.doGetProperty
(SVNURL url, java.lang.String propName, SVNRevision pegRevision, SVNRevision revision) Gets the value of the propertypropName
forurl
.void
SVNWCClient16.doGetProperty
(SVNURL url, java.lang.String propName, SVNRevision pegRevision, SVNRevision revision, boolean recursive, ISVNPropertyHandler handler) Deprecated.void
SVNWCClient16.doGetProperty
(SVNURL url, java.lang.String propName, SVNRevision pegRevision, SVNRevision revision, SVNDepth depth, ISVNPropertyHandler handler) Invokeshandler
on paths covered bydepth
starting with the specifiedpath
.private void
SVNWCClient16.doGetRemoteProperty
(SVNURL url, java.lang.String path, SVNRepository repos, java.lang.String propName, SVNRevision rev, SVNDepth depth, ISVNPropertyHandler handler) long
SVNWCClient16.doGetRevisionProperty
(SVNURL url, java.lang.String propName, SVNRevision revision, ISVNPropertyHandler handler) Gets an unversioned revision property from a repository and passes it to a provided property handler.SVNCommitClient16.doImport
(java.io.File path, SVNURL dstURL, java.lang.String commitMessage, boolean recursive) Deprecated.SVNCommitClient16.doImport
(java.io.File path, SVNURL dstURL, java.lang.String commitMessage, boolean useGlobalIgnores, boolean recursive) Deprecated.SVNCommitClient16.doImport
(java.io.File path, SVNURL dstURL, java.lang.String commitMessage, SVNProperties revisionProperties, boolean useGlobalIgnores, boolean ignoreUnknownNodeTypes, SVNDepth depth) Imports file or directorypath
into repository directorydstURL
at HEAD revision.SVNCommitClient16.doImport
(java.io.File path, SVNURL dstURL, java.lang.String commitMessage, SVNProperties revisionProperties, boolean useGlobalIgnores, boolean ignoreUnknownNodeTypes, SVNDepth depth, boolean applyAutoProperties) Imports file or directorypath
into repository directorydstURL
at HEAD revision.SVNCommitClient16.doImport
(java.io.File path, SVNURL dstURL, java.lang.String commitMessage, SVNProperties revisionProperties, boolean useGlobalIgnores, boolean ignoreUnknownNodeTypes, SVNDepth depth, boolean applyAutoProperties, ISVNFileFilter fileFilter) Imports file or directorypath
into repository directorydstURL
at HEAD revision.SVNWCClient16.doInfo
(SVNURL url, SVNRevision pegRevision, SVNRevision revision) Collects and returns information on a single item in a repository.void
SVNWCClient16.doInfo
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean recursive, ISVNInfoHandler handler) Deprecated.void
SVNWCClient16.doInfo
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, SVNDepth depth, ISVNInfoHandler handler) Invokeshandler
to return information abouturl
inrevision
.void
SVNLogClient16.doList
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean fetchLocks, boolean recursive, ISVNDirEntryHandler handler) Browses directory entries from a repository and uses the provided dir entry handler to process them.void
SVNLogClient16.doList
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean recursive, ISVNDirEntryHandler handler) Deprecated.void
SVNLogClient16.doList
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean fetchLocks, SVNDepth depth, int entryFields, ISVNDirEntryHandler handler) Reports the directory entry, and possibly children, forurl
atrevision
.void
Locks file items in a repository so that no other user can commit changes to them.void
SVNLogClient16.doLog
(SVNURL url, java.lang.String[] paths, SVNRevision pegRevision, java.util.Collection revisionRanges, boolean stopOnCopy, boolean discoverChangedPaths, boolean includeMergedRevisions, long limit, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Invokeshandler
on each log message from the givenin turn, inclusive (but never invokes
handler
on a given log message more than once).void
SVNLogClient16.doLog
(SVNURL url, java.lang.String[] paths, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, boolean stopOnCopy, boolean discoverChangedPaths, boolean includeMergedRevisions, long limit, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Invokeshandler
on each log message fromstartRevision
toendRevision
in turn, inclusive (but never invokeshandler
on a given log message more than once).void
SVNLogClient16.doLog
(SVNURL url, java.lang.String[] paths, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, boolean stopOnCopy, boolean discoverChangedPaths, long limit, ISVNLogEntryHandler handler) Gets commit log messages with other revision specific information from a repository and passes them to a log entry handler for processing.void
SVNDiffClient16.doMerge
(java.io.File path1, SVNRevision revision1, SVNURL url2, SVNRevision revision2, java.io.File dstPath, boolean recursive, boolean useAncestry, boolean force, boolean dryRun) void
SVNDiffClient16.doMerge
(java.io.File path1, SVNRevision revision1, SVNURL url2, SVNRevision revision2, java.io.File dstPath, SVNDepth depth, boolean useAncestry, boolean force, boolean dryRun, boolean recordOnly) Merges changes frompath1
/revision1
tourl2
/revision2
into the working-copy pathdstPath
.void
SVNDiffClient16.doMerge
(SVNURL url1, SVNRevision revision1, java.io.File path2, SVNRevision revision2, java.io.File dstPath, boolean recursive, boolean useAncestry, boolean force, boolean dryRun) void
SVNDiffClient16.doMerge
(SVNURL url1, SVNRevision revision1, java.io.File path2, SVNRevision revision2, java.io.File dstPath, SVNDepth depth, boolean useAncestry, boolean force, boolean dryRun, boolean recordOnly) Merges changes fromurl1
/revision1
topath2
/revision2
into the working-copy pathdstPath
.void
SVNDiffClient16.doMerge
(SVNURL url1, SVNRevision pegRevision, java.util.Collection rangesToMerge, java.io.File dstPath, SVNDepth depth, boolean useAncestry, boolean force, boolean dryRun, boolean recordOnly) Merges the changes betweenurl1
in peg revisionpegRevision
, as it changed between the ranges described inrangesToMerge
.void
SVNDiffClient16.doMerge
(SVNURL url1, SVNRevision revision1, SVNURL url2, SVNRevision revision2, java.io.File dstPath, boolean recursive, boolean useAncestry, boolean force, boolean dryRun) void
SVNDiffClient16.doMerge
(SVNURL url1, SVNRevision revision1, SVNURL url2, SVNRevision revision2, java.io.File dstPath, SVNDepth depth, boolean useAncestry, boolean force, boolean dryRun, boolean recordOnly) Merges changes fromurl1
/revision1
tourl2
/revision2
into the working-copy pathdstPath
.void
SVNDiffClient16.doMerge
(SVNURL url1, SVNRevision pegRevision, SVNRevision revision1, SVNRevision revision2, java.io.File dstPath, boolean recursive, boolean useAncestry, boolean force, boolean dryRun) void
SVNDiffClient16.doMergeReIntegrate
(SVNURL srcURL, SVNRevision pegRevision, java.io.File dstPath, boolean dryRun) Performs a reintegration merge ofsrcURL
atpegRevision
intodstPath
.Committs a creation of a new directory/directories in the repository.SVNCommitClient16.doMkDir
(SVNURL[] urls, java.lang.String commitMessage, SVNProperties revisionProperties, boolean makeParents) Creates directory(ies) in a repository.void
SVNUpdateClient16.doRelocate
(java.io.File dst, SVNURL oldURL, SVNURL newURL, boolean recursive) Substitutes the beginning part of a Working Copy's URL with a new one.SVNWCClient16.doSetProperty
(SVNURL url, java.lang.String propName, SVNPropertyValue propValue, SVNRevision baseRevision, java.lang.String commitMessage, SVNProperties revisionProperties, boolean skipChecks, ISVNPropertyHandler handler) SetspropName
topropValue
onpath
.void
SVNWCClient16.doSetRevisionProperty
(SVNURL url, SVNRevision revision, java.lang.String propName, SVNPropertyValue propValue, boolean force, ISVNPropertyHandler handler) SetpropName
topropValue
on revisionrevision
in the repository represented bypath
.java.util.Collection<SVNURL>
SVNDiffClient16.doSuggestMergeSources
(SVNURL url, SVNRevision pegRevision) Returns a collection of potential merge sources (expressed as full repositoryURLs
) forurl
atpegRevision
.long
SVNUpdateClient16.doSwitch
(java.io.File file, SVNURL url, SVNRevision revision, boolean recursive) Deprecated.long
SVNUpdateClient16.doSwitch
(java.io.File file, SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean recursive) Deprecated.long
SVNUpdateClient16.doSwitch
(java.io.File file, SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean recursive, boolean force) Deprecated.long
SVNUpdateClient16.doSwitch
(java.io.File path, SVNURL url, SVNRevision pegRevision, SVNRevision revision, SVNDepth depth, boolean allowUnversionedObstructions, boolean depthIsSticky) Switches working treepath
tourl
\pegRevision
atrevision
.private long
SVNUpdateClient16.doSwitchImpl
(SVNWCAccess wcAccess, java.io.File path, SVNURL url, SVNRevision pegRevision, SVNRevision revision, SVNDepth depth, boolean allowUnversionedObstructions, boolean depthIsSticky) void
Unlocks file items in a repository.protected SVNURL
SVNBasicDelegate.ensureSessionURL
(SVNRepository repository, SVNURL url) private java.lang.Object[]
SVNDiffClient16.getLocationFromPathAndRevision
(java.io.File path, SVNURL url, SVNRevision pegRevision) protected SVNBasicDelegate.SVNRepositoryLocation[]
SVNBasicDelegate.getLocations
(SVNURL url, java.io.File path, SVNRepository repository, SVNRevision revision, SVNRevision start, SVNRevision end) private void
SVNDiffClient16.getLogEligibleMergeInfoImpl
(java.io.File path, SVNURL url, SVNRevision pegRevision, SVNURL mergeSrcURL, java.io.File mergeSrcPath, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) private void
SVNDiffClient16.getLogMergedMergeInfoImpl
(java.io.File path, SVNURL url, SVNRevision pegRevision, SVNURL mergeSrcURL, java.io.File mergeSrcPath, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) protected java.lang.String
SVNBasicDelegate.getPathRelativeToRoot
(java.io.File path, SVNURL url, SVNURL reposRootURL, SVNWCAccess wcAccess, SVNRepository repos) protected java.lang.String
SVNBasicDelegate.getPathRelativeToSession
(SVNURL url, SVNURL sessionURL, SVNRepository repos) SVNBasicDelegate.getReposRoot
(java.io.File path, SVNURL url, SVNRevision pegRevision, SVNAdminArea adminArea, SVNWCAccess access) Returns the root of the repository.private java.util.Map<java.lang.String,
java.util.Map<java.lang.String, java.lang.String>> SVNCommitClient16.getVersionedAutoProperties
(SVNURL url, SVNURL reposRoot) private void
SVNUpdateClient16.handleExternals
(SVNWCAccess wcAccess, java.io.File root, java.util.Map oldExternals, java.util.Map newExternals, java.util.Map depths, SVNURL fromURL, SVNURL rootURL, SVNDepth requestedDepth, boolean isExport, boolean updateUnchanged) private void
SVNWCClient16.pushDirInfo
(SVNRepository repos, SVNRevision rev, java.lang.String path, SVNURL root, java.lang.String uuid, SVNURL url, java.util.Map locks, SVNDepth depth, ISVNInfoHandler handler) private void
SVNUpdateClient16.switchFileExternal
(SVNWCAccess wcAccess, java.io.File path, SVNURL url, SVNRevision pegRevision, SVNRevision revision, SVNURL reposRootURL) private java.util.Map
SVNUpdateClient16.validateRelocateTargetURL
(SVNURL targetURL, java.lang.String expectedUUID, java.util.Map validatedURLs, boolean isRoot) Constructors in org.tmatesoft.svn.core.internal.wc16 with parameters of type SVNURL -
Uses of SVNURL in org.tmatesoft.svn.core.internal.wc17
Fields in org.tmatesoft.svn.core.internal.wc17 declared as SVNURLModifier and TypeFieldDescriptionprivate SVNURL
SVNCommitter17.myRepositoryRoot
protected SVNURL
SVNStatusEditor17.myRepositoryRoot
private SVNURL
SVNUpdateEditor17.myReposRootURL
private SVNURL
SVNStatusReporter17.repositoryLocation
private SVNURL
SVNStatusReporter17.repositoryRoot
SVNWCContext.CommittableExternalInfo.reposRootUrl
SVNWCContext.SVNWCNodeReposInfo.reposRootUrl
SVNWCContext.NodeCopyFromInfo.rootUrl
SVNWCContext.EntryLocationInfo.url
SVNWCContext.NodeCopyFromInfo.url
Methods in org.tmatesoft.svn.core.internal.wc17 that return SVNURLModifier and TypeMethodDescriptionSVNWCContext.getNodeUrl
(java.io.File path) SVNUpdateEditor17.DirectoryBaton.getPreviousURL()
SVNUpdateEditor17.FileBaton.getPreviousURL()
SVNUpdateEditor17.DirectoryBaton.getURL()
SVNUpdateEditor17.FileBaton.getURL()
SVNWCContext.getUrlFromPath
(java.io.File localAbsPath) static SVNURL
Methods in org.tmatesoft.svn.core.internal.wc17 with parameters of type SVNURLModifier and TypeMethodDescriptionstatic SVNCommitInfo
SVNCommitter17.commit
(SVNWCContext context, java.util.Collection<java.io.File> tmpFiles, java.util.Map<java.lang.String, SvnCommitItem> committables, SVNURL repositoryRoot, ISVNEditor commitEditor, java.util.Map<java.io.File, SvnChecksum> md5Checksums, java.util.Map<java.io.File, SvnChecksum> sha1Checksums) static ISVNUpdateEditor
SVNUpdateEditor17.createUpdateEditor
(SVNWCContext context, long targetRevision, java.io.File anchorAbspath, java.lang.String targetName, java.util.Map<java.io.File, java.util.Map<java.lang.String, SVNProperties>> inheritableProperties, boolean useCommitTimes, SVNURL switchURL, SVNDepth depth, boolean depthIsSticky, boolean allowUnversionedObstructions, boolean addsAsModifications, boolean serverPerformsFiltering, boolean cleanCheckout, ISVNDirFetcher dirFetcher, SVNExternalsStore externalsStore, java.lang.String[] preservedExtensions, ISVNConflictHandler conflictHandler) static ISVNUpdateEditor
SVNUpdateEditor17.createUpdateEditor
(SVNWCContext wcContext, java.io.File anchorAbspath, java.lang.String target, java.util.Map<java.io.File, java.util.Map<java.lang.String, SVNProperties>> inheritableProperties, SVNURL reposRoot, SVNURL switchURL, SVNExternalsStore externalsStore, boolean allowUnversionedObstructions, boolean depthIsSticky, SVNDepth depth, java.lang.String[] preservedExts, ISVNDirFetcher dirFetcher) void
SVNLogClient17.doAnnotate
(SVNURL url, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, boolean ignoreMimeType, boolean includeMergedRevisions, ISVNAnnotateHandler handler, java.lang.String inputEncoding) Invokeshandler
on each line-blame item associated with revisionendRevision
ofurl
, usingstartRevision
as the default source of all blame.void
SVNLogClient17.doAnnotate
(SVNURL url, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, boolean ignoreMimeType, ISVNAnnotateHandler handler, java.lang.String inputEncoding) Obtains annotation information for each file text line from a repository and passes it to a provided annotation handler.void
SVNLogClient17.doAnnotate
(SVNURL url, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, ISVNAnnotateHandler handler) Obtains annotation information for each file text line from a repository and passes it to a provided annotation handler.void
SVNLogClient17.doAnnotate
(SVNURL url, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, ISVNAnnotateHandler handler, java.lang.String inputEncoding) Obtains annotation information for each file text line from a repository and passes it to a provided annotation handler.void
SVNLogClient17.doList
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean fetchLocks, boolean recursive, ISVNDirEntryHandler handler) Browses directory entries from a repository and uses the provided dir entry handler to process them.void
SVNLogClient17.doList
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean recursive, ISVNDirEntryHandler handler) Deprecated.void
SVNLogClient17.doList
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean fetchLocks, SVNDepth depth, int entryFields, ISVNDirEntryHandler handler) Reports the directory entry, and possibly children, forurl
atrevision
.void
SVNLogClient17.doLog
(SVNURL url, java.lang.String[] paths, SVNRevision pegRevision, java.util.Collection revisionRanges, boolean stopOnCopy, boolean discoverChangedPaths, boolean includeMergedRevisions, long limit, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Invokeshandler
on each log message from the givenin turn, inclusive (but never invokes
handler
on a given log message more than once).void
SVNLogClient17.doLog
(SVNURL url, java.lang.String[] paths, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, boolean stopOnCopy, boolean discoverChangedPaths, boolean includeMergedRevisions, long limit, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Invokeshandler
on each log message fromstartRevision
toendRevision
in turn, inclusive (but never invokeshandler
on a given log message more than once).void
SVNLogClient17.doLog
(SVNURL url, java.lang.String[] paths, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, boolean stopOnCopy, boolean discoverChangedPaths, long limit, ISVNLogEntryHandler handler) Gets commit log messages with other revision specific information from a repository and passes them to a log entry handler for processing.private void
SVNUpdateEditor17.doNotification
(java.io.File localAbspath, SVNNodeKind kind, SVNEventAction action, SVNURL url, SVNURL previousURL) java.util.Map<java.lang.String,
SVNDirEntry> ISVNDirFetcher.fetchEntries
(SVNURL repositoryRoot, java.io.File reposRelPath) private java.lang.String
SVNCommitter17.getCopyFromPath
(SVNURL url) void
SVNWCContext.initializeWC
(java.io.File localAbspath, SVNURL url, SVNURL repositoryRoot, java.lang.String uuid, long revision, SVNDepth depth, int targetWorkingCopyFormat) private void
SVNWCContext.initWC
(java.io.File localAbspath, java.io.File reposRelpath, SVNURL repositoryRoot, java.lang.String uuid, long revNumber, SVNDepth depth, int workingCopyFormat) static java.lang.String
static SVNURL
void
SVNStatusReporter17.linkPath
(SVNURL url, java.lang.String path, java.lang.String lockToken, long revision, boolean startEmpty) void
SVNStatusReporter17.linkPath
(SVNURL url, java.lang.String path, java.lang.String lockToken, long revision, SVNDepth depth, boolean startEmpty) private void
SVNReporter17.reportRevisionsAndDepths
(SVNWCDbRoot root, java.io.File dirPath, java.io.File dirLocalRelPath, java.io.File reportRelPath, long dirRev, java.io.File dirReposRelPath, SVNURL dirReposRoot, SVNDepth dirDepth, ISVNReporter reporter, boolean restoreFiles, SVNDepth depth, boolean reportEverything) void
SVNStatusEditor17.setRepositoryInfo
(SVNURL repositoryRoot, java.util.HashMap<java.lang.String, SVNLock> repositoryLocks) Constructors in org.tmatesoft.svn.core.internal.wc17 with parameters of type SVNURLModifierConstructorDescriptionSVNCommitter17
(SVNWCContext context, java.util.Map<java.lang.String, SvnCommitItem> committables, SVNURL repositoryRoot, java.util.Collection<java.io.File> tmpFiles, java.util.Map<java.io.File, SvnChecksum> md5Checksums, java.util.Map<java.io.File, SvnChecksum> sha1Checksums) SVNUpdateEditor17
(SVNWCContext wcContext, java.io.File anchorAbspath, java.lang.String targetBasename, java.util.Map<java.io.File, java.util.Map<java.lang.String, SVNProperties>> inheritableProperties, SVNURL reposRootUrl, java.lang.String reposUuid, SVNURL switchURL, SVNExternalsStore externalsStore, boolean allowUnversionedObstructions, boolean depthIsSticky, SVNDepth depth, java.lang.String[] preservedExts, ISVNDirFetcher dirFetcher) -
Uses of SVNURL in org.tmatesoft.svn.core.internal.wc17.db
Fields in org.tmatesoft.svn.core.internal.wc17.db declared as SVNURLModifier and TypeFieldDescriptionprivate SVNURL
SVNWCDb.BumpRevisionPostUpdate.newReposRootURL
ISVNWCDb.WCDbAdditionInfo.originalRootUrl
ISVNWCDb.WCDbInfo.originalRootUrl
ISVNWCDb.SVNWCDbInfo.reposRootUrl
ISVNWCDb.WCDbAdditionInfo.reposRootUrl
ISVNWCDb.WCDbBaseInfo.reposRootUrl
ISVNWCDb.WCDbInfo.reposRootUrl
private SVNURL
SvnExternalUpdateEditor.reposRootUrl
SVNWCDb.SetRevRelpath.reposRootUrl
SVNWCDb.InsertBase.reposRootURL
ISVNWCDb.WCDbRepositoryInfo.rootUrl
private SVNURL
SvnExternalUpdateEditor.url
Methods in org.tmatesoft.svn.core.internal.wc17.db that return types with arguments of type SVNURLModifier and TypeMethodDescriptionjava.util.Map<SVNURL,
java.lang.String> ISVNWCDb.getNodeLockTokensRecursive
(java.io.File localAbsPath) java.util.Map<SVNURL,
java.lang.String> SVNWCDb.getNodeLockTokensRecursive
(java.io.File localAbsPath) Methods in org.tmatesoft.svn.core.internal.wc17.db with parameters of type SVNURLModifier and TypeMethodDescriptionvoid
ISVNWCDb.addBaseDirectory
(java.io.File localAbsPath, java.io.File reposRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, long revision, SVNProperties props, long changedRev, SVNDate changedDate, java.lang.String changedAuthor, java.util.List<java.io.File> children, SVNDepth depth, SVNProperties davCache, SVNSkel conflict, boolean updateActualProps, SVNProperties actualProps, java.util.Map<java.lang.String, SVNProperties> iprops, SVNSkel workItems) Add or replace a directory in the BASE tree.void
SVNWCDb.addBaseDirectory
(java.io.File localAbsPath, java.io.File reposRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, long revision, SVNProperties props, long changedRev, SVNDate changedDate, java.lang.String changedAuthor, java.util.List<java.io.File> children, SVNDepth depth, SVNProperties davCache, SVNSkel conflict, boolean updateActualProps, SVNProperties actualProps, java.util.Map<java.lang.String, SVNProperties> iprops, SVNSkel workItems) void
ISVNWCDb.addBaseExcludedNode
(java.io.File localAbsPath, java.io.File reposRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, long revision, ISVNWCDb.SVNWCDbKind kind, ISVNWCDb.SVNWCDbStatus status, SVNSkel conflict, SVNSkel workItems) Create a node in the BASE tree that is present in name only.void
SVNWCDb.addBaseExcludedNode
(java.io.File localAbsPath, java.io.File reposRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, long revision, ISVNWCDb.SVNWCDbKind kind, ISVNWCDb.SVNWCDbStatus status, SVNSkel conflict, SVNSkel workItems) void
ISVNWCDb.addBaseFile
(java.io.File localAbspath, java.io.File reposRelpath, SVNURL reposRootUrl, java.lang.String reposUuid, long revision, SVNProperties props, long changedRev, SVNDate changedDate, java.lang.String changedAuthor, SvnChecksum checksum, SVNProperties davCache, boolean deleteWorking, boolean updateActualProps, SVNProperties actualProps, boolean keepRecordedInfo, boolean insertBaseDeleted, java.util.Map<java.lang.String, SVNProperties> iprops, SVNSkel conflict, SVNSkel workItems) Add or replace a file in the BASE tree.void
SVNWCDb.addBaseFile
(java.io.File localAbspath, java.io.File reposRelpath, SVNURL reposRootUrl, java.lang.String reposUuid, long revision, SVNProperties props, long changedRev, SVNDate changedDate, java.lang.String changedAuthor, SvnChecksum checksum, SVNProperties davCache, boolean deleteWorking, boolean updateActualProps, SVNProperties actualProps, boolean keepRecordedInfo, boolean insertBaseDeleted, java.util.Map<java.lang.String, SVNProperties> iprops, SVNSkel conflict, SVNSkel workItems) void
ISVNWCDb.addBaseNotPresentNode
(java.io.File localAbspath, java.io.File reposRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, long revision, ISVNWCDb.SVNWCDbKind kind, SVNSkel conflict, SVNSkel workItems) void
SVNWCDb.addBaseNotPresentNode
(java.io.File localAbspath, java.io.File reposRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, long revision, ISVNWCDb.SVNWCDbKind kind, SVNSkel conflict, SVNSkel workItems) void
ISVNWCDb.addBaseSymlink
(java.io.File localAbsPath, java.io.File reposRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, long revision, SVNProperties props, long changedRev, SVNDate changedDate, java.lang.String changedAuthor, java.io.File target, SVNProperties davCache, SVNSkel conflict, boolean updateActualProps, SVNProperties acutalProps, SVNSkel workItems) Add or replace a symlink in the BASE tree.void
SVNWCDb.addBaseSymlink
(java.io.File localAbsPath, java.io.File reposRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, long revision, SVNProperties props, long changedRev, SVNDate changedDate, java.lang.String changedAuthor, java.io.File target, SVNProperties davCache, SVNSkel conflict, boolean updateActualProps, SVNProperties acutalProps, SVNSkel workItems) private void
SVNWCDb.addExcludedOrNotPresentNode
(java.io.File localAbspath, java.io.File reposRelpath, SVNURL reposRootUrl, java.lang.String reposUuid, long revision, ISVNWCDb.SVNWCDbKind kind, ISVNWCDb.SVNWCDbStatus status, SVNSkel conflict, SVNSkel workItems) static void
SvnWcDbExternals.addExternalDir
(SVNWCDb db, java.io.File localAbspath, java.io.File wriPath, SVNURL reposRootUrl, java.lang.String reposUuid, java.io.File recordAncestorAbspath, java.io.File recordedReposRelPath, long recordedPegRevision, long recordedRevision, SVNSkel workItems) static void
SvnWcDbExternals.addExternalFile
(SVNWCContext context, java.io.File localAbsPath, java.io.File wriAbsPath, java.io.File reposRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, long targetRevision, SVNProperties newPristineProperties, java.util.Map<java.lang.String, SVNProperties> iprops, long changedRev, SVNDate changedDate, java.lang.String changedAuthor, SvnChecksum newChecksum, SVNProperties davCache, java.io.File recordAncestorAbspath, java.io.File recordedReposRelPath, long recordedPegRevision, long recordedRevision, boolean updateActualProperties, SVNProperties newActualProperties, boolean keepRecordedInfo, SVNSkel conflictSkel, SVNSkel allWorkItems) static void
SvnWcDbCopy.copyDir
(SVNWCDbDir pdh, java.io.File localRelpath, SVNProperties props, long changedRev, SVNDate changedDate, java.lang.String changedAuthor, java.io.File originalReposRelPath, SVNURL originalRootUrl, java.lang.String originalUuid, long originalRevision, java.util.List<java.io.File> children, boolean isMove, SVNDepth depth, SVNSkel conflict, SVNSkel workItems) static void
SvnWcDbCopy.copyFile
(SVNWCDbDir pdh, java.io.File localRelpath, SVNProperties props, long changedRev, SVNDate changedDate, java.lang.String changedAuthor, java.io.File originalReposRelPath, SVNURL originalRootUrl, java.lang.String originalUuid, long originalRevision, SvnChecksum checksum, boolean updateActualProps, SVNProperties newActualProps, SVNSkel conflict, SVNSkel workItems) private SVNWCDb.CreateDbInfo
SVNWCDb.createDb
(java.io.File dirAbsPath, SVNURL reposRootUrl, java.lang.String reposUuid, java.lang.String sdbFileName, int workingCopyFormat, boolean isUpgrade) static ISVNUpdateEditor
SvnExternalUpdateEditor.createEditor
(SVNWCContext context, java.io.File localAbsPath, java.io.File wriAbsPath, SVNURL url, SVNURL reposRootUrl, java.lang.String reposUuid, java.util.Map<java.lang.String, SVNProperties> iprops, boolean useCommitTimes, java.lang.String[] preservedExts, java.io.File recordAncestorAbsPath, SVNURL recordedUrl, SVNRevision recordedPegRev, SVNRevision recordedRev) long
SVNWCDb.createReposId
(SVNSqlJetDb sDb, SVNURL reposRootUrl, java.lang.String reposUuid) For a given REPOS_ROOT_URL/REPOS_UUID pair, return the existing REPOS_ID value.long
SVNWCDb.fetchReposId
(SVNSqlJetDb db, SVNURL reposRootUrl, java.lang.String reposUuid) void
ISVNWCDb.init
(java.io.File localAbsPath, java.io.File reposRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, long initialRev, SVNDepth depth, int workingCopyFormat) Initialize the SqlDB for LOCAL_ABSPATH, which should be a working copy path.void
SVNWCDb.init
(java.io.File localAbsPath, java.io.File reposRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, long initialRev, SVNDepth depth, int workingCopyFormat) void
ISVNWCDb.opBumpRevisionPostUpdate
(java.io.File localAbsPath, SVNDepth depth, java.io.File newReposRelPath, SVNURL newReposRootURL, java.lang.String newReposUUID, long newRevision, java.util.Collection<java.io.File> excludedPaths, java.util.Map<java.io.File, java.util.Map<java.lang.String, SVNProperties>> inheritableProperties, ISVNEventHandler eventHandler) void
SVNWCDb.opBumpRevisionPostUpdate
(java.io.File localAbsPath, SVNDepth depth, java.io.File newReposRelPath, SVNURL newReposRootURL, java.lang.String newReposUUID, long newRevision, java.util.Collection<java.io.File> excludedPaths, java.util.Map<java.io.File, java.util.Map<java.lang.String, SVNProperties>> inheritableProperties, ISVNEventHandler eventHandler) void
ISVNWCDb.opCopyDir
(java.io.File localAbsPath, SVNProperties props, long changedRev, SVNDate changedDate, java.lang.String changedAuthor, java.io.File originalReposRelPath, SVNURL originalRootUrl, java.lang.String originalUuid, long originalRevision, java.util.List<java.io.File> children, boolean isMove, SVNDepth depth, SVNSkel conflict, SVNSkel workItems) Record a copy at LOCAL_ABSPATH from a repository directory.void
SVNWCDb.opCopyDir
(java.io.File localAbsPath, SVNProperties props, long changedRev, SVNDate changedDate, java.lang.String changedAuthor, java.io.File originalReposRelPath, SVNURL originalRootUrl, java.lang.String originalUuid, long originalRevision, java.util.List<java.io.File> children, boolean isMove, SVNDepth depth, SVNSkel conflict, SVNSkel workItems) void
ISVNWCDb.opCopyFile
(java.io.File localAbsPath, SVNProperties props, long changedRev, SVNDate changedDate, java.lang.String changedAuthor, java.io.File originalReposRelPath, SVNURL originalRootUrl, java.lang.String originalUuid, long originalRevision, SvnChecksum checksum, boolean updateActualProps, SVNProperties newActualProps, SVNSkel conflict, SVNSkel workItems) Record a copy at LOCAL_ABSPATH from a repository file.void
SVNWCDb.opCopyFile
(java.io.File localAbsPath, SVNProperties props, long changedRev, SVNDate changedDate, java.lang.String changedAuthor, java.io.File originalReposRelPath, SVNURL originalRootUrl, java.lang.String originalUuid, long originalRevision, SvnChecksum checksum, boolean updateActualProps, SVNProperties newActualProps, SVNSkel conflict, SVNSkel workItems) void
ISVNWCDb.opSetNewDirToIncompleteTemp
(java.io.File localAbspath, java.io.File reposRelpath, SVNURL reposRootURL, java.lang.String reposUuid, long revision, SVNDepth depth, boolean insertBaseDeleted, boolean deleteWorking, SVNSkel conflict, SVNSkel workItems) void
SVNWCDb.opSetNewDirToIncompleteTemp
(java.io.File localAbspath, java.io.File reposRelpath, SVNURL reposRootURL, java.lang.String reposUuid, long revision, SVNDepth depth, boolean insertBaseDeleted, boolean deleteWorking, SVNSkel conflict, SVNSkel workItems) private void
SVNWCDb.opSetRevAndReposRelpath
(SVNWCDbRoot wcRoot, java.io.File localRelpath, java.util.Map<java.lang.String, SVNProperties> nodeIprops, long revision, boolean setReposRelpath, java.io.File reposRelpath, SVNURL reposRootUrl, java.lang.String reposUuid) void
ISVNWCDb.opSetRevAndReposRelpathTemp
(java.io.File localAbspath, long newRevision, boolean setReposRelpath, java.io.File newReposRelpath, SVNURL reposRootUrl, java.lang.String reposUuid) void
SVNWCDb.opSetRevAndReposRelpathTemp
(java.io.File localAbspath, long revision, boolean setReposRelpath, java.io.File reposRelpath, SVNURL reposRootUrl, java.lang.String reposUuid) void
ISVNWCDb.registerExternal
(java.io.File definingAbsPath, java.io.File localAbsPath, SVNNodeKind kind, SVNURL reposRootUrl, java.lang.String reposUuid, java.io.File reposRelPath, long operationalRevision, long revision) void
SVNWCDb.registerExternal
(java.io.File definingAbsPath, java.io.File localAbsPath, SVNNodeKind kind, SVNURL reposRootUrl, java.lang.String reposUuid, java.io.File reposRelPath, long operationalRevision, long revision) private static void
private static void
SvnWcDbRelocate.relocate
(SVNWCDbRoot root, java.io.File localRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, boolean haveBaseNode, long oldReposId) static void
SvnWcDbRelocate.relocate
(SVNWCContext context, java.io.File localAbspath, SVNURL from, SVNURL to, SvnWcDbRelocate.ISvnRelocateValidator validator) void
ISVNWCDb.upgradeBegin
(java.io.File localAbspath, ISVNWCDb.SVNWCDbUpgradeData upgradeData, SVNURL repositoryRootUrl, java.lang.String repositoryUUID, int targetWorkingCopyFormat) void
SVNWCDb.upgradeBegin
(java.io.File localAbspath, ISVNWCDb.SVNWCDbUpgradeData upgradeData, SVNURL repositoryRootUrl, java.lang.String repositoryUUID, int targetWorkingCopyFormat) void
ISVNWCDb.upgradeInsertExternal
(java.io.File localAbsPath, SVNNodeKind kind, java.io.File parentAbsPath, java.io.File defLocalAbsPath, java.io.File reposRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, long defPegRevision, long defRevision) void
SVNWCDb.upgradeInsertExternal
(java.io.File localAbsPath, SVNNodeKind kind, java.io.File parentAbsPath, java.io.File defLocalAbsPath, java.io.File reposRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, long defPegRevision, long defRevision) void
SvnWcDbRelocate.ISvnRelocateValidator.validateRelocation
(java.lang.String uuid, SVNURL newUrl, SVNURL newRepositoryRoot) -
Uses of SVNURL in org.tmatesoft.svn.core.internal.wc2
Methods in org.tmatesoft.svn.core.internal.wc2 with parameters of type SVNURLModifier and TypeMethodDescriptionSvnRepositoryAccess.createRepository
(SVNURL url, java.lang.String expectedUuid, boolean mayReuse) private java.util.Map<java.lang.String,
SVNMergeRangeList> SvnRepositoryAccess.getHistoryAsMergeInfo
(SVNURL url, SVNRevision pegRevision, long rangeYoungest, long rangeOldest, boolean[] hasZero, SVNRepository repos) protected java.lang.String
SvnRepositoryAccess.getPathRelativeToRoot
(SVNURL url, SVNURL reposRootURL, SVNRepository repos) java.lang.String
SvnRepositoryAccess.getPathRelativeToSession
(SVNURL url, SVNURL sessionURL, SVNRepository repos) SvnRepositoryAccess.getYoungestCommonAncestor
(SVNURL url1, long rev1, SVNURL url2, long rev2) -
Uses of SVNURL in org.tmatesoft.svn.core.internal.wc2.admin
Methods in org.tmatesoft.svn.core.internal.wc2.admin that return SVNURL -
Uses of SVNURL in org.tmatesoft.svn.core.internal.wc2.ng
Fields in org.tmatesoft.svn.core.internal.wc2.ng declared as SVNURLModifier and TypeFieldDescriptionprivate final SVNURL
SvnDiffSummarizeCallback.baseUrl
(package private) SVNURL
SvnNgWcToReposCopy.SvnCopyPair.dst
SvnNgAdd.CheckCanAddToParent.reposRootUrl
(package private) SVNURL
SvnNgMergeDriver.reposRootUrl
(package private) SVNURL
SvnNgReposToWcCopy.SvnCopyPair.source
(package private) SVNURL
SvnNgReposToWcCopy.SvnCopyPair.sourceOriginal
(package private) SVNURL
SvnNgMergeDriver.MergeSource.url1
(package private) SVNURL
SvnNgMergeDriver.MergeSource.url2
Fields in org.tmatesoft.svn.core.internal.wc2.ng with type parameters of type SVNURLModifier and TypeFieldDescriptionprivate java.util.Map<java.lang.String,
SVNURL> SvnNgRelocate.collectedUuids
java.util.Map<SVNURL,
java.lang.String> SvnNgCommitUtil.CommitStatusWalker.lockTokens
Methods in org.tmatesoft.svn.core.internal.wc2.ng that return SVNURLModifier and TypeMethodDescriptionstatic SVNURL
SvnNgLockUtil.collectLockInfo
(SvnNgOperationRunner opRunner, SVNWCContext context, SvnNgRepositoryAccess wcAccess, java.util.Collection<SvnTarget> targets, java.util.Map lockInfo, java.util.Map lockPaths, boolean lock, boolean stealLock) protected static SVNURL
SvnNgMergeDriver.ensureSessionURL
(SVNRepository repository, SVNURL url) private SVNURL
SvnNgReposToWcCopy.getCommonCopyAncestor
(java.util.Collection<SvnNgReposToWcCopy.SvnCopyPair> copyPairs) private SVNURL
SvnNgMergeCallback.getReposRootURL()
private SVNURL
SvnNgMergeCallback.getSource1URL()
private SVNURL
SvnNgMergeCallback.getSource2URL()
protected SVNURL
SvnNgRepositoryAccess.getTargetURL
(SvnTarget target) private SVNURL
SvnNgDiff.getURL
(java.io.File path1) private SVNURL
SvnNgDiffSummarize.getURL
(java.io.File path1) private SVNURL
SvnNgMergeCallback2.reposLocations
(SVNURL url, long pegRevision, SVNURL reposRootUrl, java.lang.String reposUuid, long opRevision, SVNRepository svnRepository) private SVNURL
SvnNgDiff.resolvePeggedDiffTargetUrl
(SVNURL url, java.io.File path, SVNRevision pegRevision, SVNRevision revision) private SVNURL
SvnNgDiffSummarize.resolvePeggedDiffTargetUrl
(SVNURL url, java.io.File path, SVNRevision pegRevision, SVNRevision revision) protected SVNURL
SvnNgRelocate.run
(SVNWCContext context) static SVNURL
SvnNgCommitUtil.translateCommitables
(java.util.Collection<SvnCommitItem> items, java.util.Map<java.lang.String, SvnCommitItem> decodedPaths) Methods in org.tmatesoft.svn.core.internal.wc2.ng that return types with arguments of type SVNURLModifier and TypeMethodDescriptionprivate java.util.Collection<SVNURL>
SvnNgWcToReposCopy.findMissingParents
(SVNURL targetURL, SVNRepository repository) protected java.util.Map<SVNURL,
SVNMergeRangeList> SvnNgGetMergeInfo.run
(SVNWCContext context) protected java.util.Collection<SVNURL>
SvnNgSuggestMergeSources.run
(SVNWCContext context) Methods in org.tmatesoft.svn.core.internal.wc2.ng with parameters of type SVNURLModifier and TypeMethodDescriptionprotected void
SvnNgAdd.add
(java.io.File localAbsPath, SVNDepth depth, SVNURL copyFromUrl, long copyFromRevision, boolean fireEvent) static void
SvnNgReposToWcCopy.addFileToWc
(SVNWCContext context, java.io.File path, java.io.InputStream newBaseContents, java.io.InputStream newContents, SVNProperties newBaseProps, SVNProperties newProps, SVNURL copyFromURL, long copyFromRev) private void
SvnNgMergeDriver.adjustDeletedSubTreeRanges
(SvnNgMergeDriver.MergePath child, SvnNgMergeDriver.MergePath parent, long revision1, long revision2, SVNURL primaryURL, SVNRepository repository) java.util.Map
SvnNgMergeDriver.calculateImplicitMergeInfo
(SVNRepository repos, SVNURL url, long[] targetRev, long start, long end) private SvnTarget
SvnNgMergeReintegrate.calculateLeftHandSide
(SVNWCContext context, java.util.Map<java.io.File, java.util.Map<java.lang.String, SVNMergeRangeList>> mergedToSourceCatalog, java.util.Map<java.io.File, java.util.Map<java.lang.String, SVNMergeRangeList>> unmergedToSourceCatalog, java.io.File targetAbsPath, java.io.File targetReposRelPath, java.util.Map<java.io.File, java.lang.String> subtreesWithMergeInfo, long targetRev, java.io.File sourceReposRelPath, SVNURL sourceReposRoot, SVNURL targetReposRoot, long sourceRev, SVNRepository sourceRepository, SVNRepository targetRepository) void
SvnNgMergeDriver.calculateRemainingRanges
(SvnNgMergeDriver.MergePath parent, SvnNgMergeDriver.MergePath child, SVNURL sourceRootURL, SVNURL url1, long revision1, SVNURL url2, long revision2, java.util.Map targetMergeInfo, SVNMergeRangeList implicitSrcGap, boolean isSubtree, boolean childInheritsImplicit, SVNRepository repository) private java.util.Map<java.lang.String,
SVNMergeRangeList> SvnNgReposToWcCopy.calculateTargetMergeInfo
(SVNURL srcURL, long srcRevision, SVNRepository repository) private SvnNgAdd.CheckCanAddNode
SvnNgAdd.checkCanAddNode
(java.io.File localAbsPath, SVNURL copyFromUrl, long copyFromRevision) private void
SvnNgDiff.checkDiffTargetExists
(SVNURL url, long revision, long otherRevision, SVNRepository repository) private void
SvnNgDiffSummarize.checkDiffTargetExists
(SVNURL url, long revision, long otherRevision, SVNRepository repository) protected long
SvnNgAbstractUpdate.checkout
(SVNURL url, java.io.File localAbspath, SVNRevision pegRevision, SVNRevision revision, SVNDepth depth, boolean ignoreExternals, boolean allowUnversionedObstructions, boolean sleepForTimestamp, int targetWorkingCopyFormat) private void
SvnNgMergeCallback.checkReposMatch
(java.io.File path, SVNURL url) private void
SvnNgMergeCallback2.checkReposMatch
(SVNURL reposRootUrl, java.io.File localAbsPath, SVNURL url) private java.util.List<SvnNgMergeDriver.MergeSource>
SvnNgMergeDriver.combineRangeWithSegments
(SVNMergeRange range, SVNLocationSegment[] segments, SVNURL sourceRootURL) private void
SvnNgMergeCallback2.completeDirectoryAdd
(java.io.File localAbsPath, SVNProperties newOriginalProps, SVNURL copyFromUrl, long copyFromRevision) private void
SvnNgReposToWcCopy.copyForeign
(SVNURL url, java.io.File dstAbsPath, SVNRevision pegRevision, SVNRevision revision, SVNDepth depth, boolean makeParents, boolean alreadyLocked) protected SVNRepository
SvnNgDiffSummarize.createRepository
(SVNURL url, java.io.File path, boolean mayReuse) SvnNgRepositoryAccess.createRepository
(SVNURL url, java.io.File baseDirectory) private void
SvnNgDiffSummarize.doDiffReposRepos
(SVNURL url1, java.io.File path1, SVNRevision revision1, SVNURL url2, java.io.File path2, SVNRevision revision2, SVNRevision pegRevision, SVNDepth depth, boolean useAncestry, ISVNDiffStatusHandler handler) private void
SvnNgDiffSummarize.doDiffURL
(SVNURL url, java.io.File path, SVNRevision startRevision, SVNRevision endRevision, SVNRevision pegRevision, SVNDepth depth, boolean useAncestry, ISVNDiffStatusHandler handler) protected SvnSingleRangeConflictReport
SvnNgMergeDriver.doDirectoryMerge
(java.util.Map<java.io.File, java.util.Map<java.lang.String, SVNMergeRangeList>> resultCatalog, SvnNgMergeDriver.MergeSource source, java.io.File targetAbsPath, SVNURL sourceRootUrl, ISvnDiffCallback2 processor, SVNDepth depth, boolean squelchMergeinfoNotifications) protected SvnSingleRangeConflictReport
SvnNgMergeDriver.doMergeInfoAwareDirectoryMerge
(java.util.Map<java.io.File, java.util.Map<java.lang.String, SVNMergeRangeList>> resultCatalog, SvnNgMergeDriver.MergeSource source, java.io.File targetPath, SVNURL sourceRootUrl, java.util.Map<java.io.File, SvnNgMergeDriver.MergePath> childrenWithMergeInfo, SVNDepth depth, boolean squelchMergeinfoNotifications, ISvnDiffCallback2 processor) protected SVNCommitInfo
SvnNgWcToReposCopy.doRun
(SVNWCContext context, SVNURL target) protected long
SvnNgAbstractUpdate.doSwitch
(java.io.File localAbsPath, SVNURL switchUrl, SVNRevision revision, SVNRevision pegRevision, SVNDepth depth, boolean depthIsSticky, boolean ignoreExternals, boolean allowUnversionedObstructions, boolean ignoreAncestry, boolean sleepForTimestamp) SvnNgMergeDriver.driveMergeReportEditor
(java.io.File targetWCPath, SVNURL url1, long revision1, SVNURL url2, long revision2, java.util.Map<java.io.File, SvnNgMergeDriver.MergePath> childrenWithMergeInfo, SVNDepth depth, ISvnDiffCallback2 mergeCallback) protected SVNRepository
SvnNgMergeDriver.ensureRepository
(SVNRepository repository, SVNURL url) protected static SVNURL
SvnNgMergeDriver.ensureSessionURL
(SVNRepository repository, SVNURL url) SvnNgUpgrade.fetchReposInfo
(SVNURL url, SVNURL lastRepos, java.lang.String lastUuid) protected void
SvnNgMergeDriver.findGapsInMergeSourceHistory
(long[] gap, java.lang.String mergeSrcCanonPath, SVNURL url1, long rev1, SVNURL url2, long rev2, SVNRepository repos) private java.util.Collection<SVNURL>
SvnNgWcToReposCopy.findMissingParents
(SVNURL targetURL, SVNRepository repository) private void
SvnNgMergeDriver.fixDeletedSubtreeRanges
(SVNURL url1, long revision1, SVNURL url2, long revision2, SVNRepository repository, java.util.Map<java.io.File, SvnNgMergeDriver.MergePath> childrenWithMergeInfo) static java.util.Map<java.lang.String,
java.util.Map<java.lang.String, SVNMergeRangeList>> SvnNgMergeinfoUtil.getMergeInfo
(SVNWCContext context, SvnRepositoryAccess repoAccess, SvnTarget target, boolean includeDescendants, boolean ignoreInvalidMergeInfo, SVNURL[] root) protected java.lang.String
SvnNgMergeDriver.getPathRelativeToRoot
(SVNURL url, SVNURL reposRootURL, SVNRepository repos) private long
SvnNgDiffSummarize.getRevisionNumber
(SVNRevision revision1, SVNRepository repository1, SVNURL url1) SvnNgCommit.getUrlKind
(SVNURL url, long revision) SvnNgCommitUtil.ISvnUrlKindCallback.getUrlKind
(SVNURL url, long revision) SvnNgWcToReposCopy.getUrlKind
(SVNURL url, long revision) private static void
SvnNgCommitUtil.handleDescendants
(SVNWCContext context, SvnCommitPacket packet, SVNURL rootUrl, java.util.Collection<SvnCommitItem> items, SvnNgCommitUtil.ISvnUrlKindCallback urlKindCallback, ISVNEventHandler eventHandler) private void
SvnNgAbstractUpdate.handleExternalItemChange
(SVNURL rootUrl, java.io.File parentPath, SVNURL parentUrl, java.io.File localAbsPath, java.io.File oldDefiningPath, SVNExternal newItem) protected void
SvnNgAbstractUpdate.handleExternals
(java.util.Map<java.io.File, java.lang.String> newExternals, java.util.Map<java.io.File, SVNDepth> ambientDepths, SVNURL anchorUrl, java.io.File targetAbspath, SVNURL reposRoot, SVNDepth requestedDepth, boolean sleepForTimestamp) private void
SvnNgAbstractUpdate.handleExternalsChange
(SVNURL reposRoot, java.io.File externalPath, java.lang.String externalDefinition, java.util.Map<java.io.File, java.io.File> oldExternals, SVNDepth ambientDepth, SVNDepth requestedDepth) static void
SvnNgCommitUtil.harvestCommittables
(SVNWCContext context, java.io.File localAbsPath, SvnCommitPacket committables, java.util.Map<SVNURL, java.lang.String> lockTokens, SVNURL repositoryRootUrl, java.io.File copyModeRelPath, boolean copyModeRoot, SVNDepth depth, boolean justLocked, java.util.Collection<java.lang.String> changelists, java.util.Map<java.io.File, java.io.File> danglers, boolean skipFiles, boolean skipDirs, SvnNgCommitUtil.ISvnUrlKindCallback urlKindCallback, ISvnCommitParameters commitParameters, java.util.Map<java.io.File, java.lang.String> externalsStorage, ISVNEventHandler eventHandler) static SvnCommitPacket
SvnNgCommitUtil.harvestCopyCommitables
(SVNWCContext context, java.io.File path, SVNURL dst, SvnCommitPacket packet, SvnNgCommitUtil.ISvnUrlKindCallback urlKindCallback, ISvnCommitParameters commitParameters, java.util.Map<java.io.File, java.lang.String> externalsStorage) private static void
SvnNgCommitUtil.harvestNotPresentForCopy
(SVNWCContext context, java.io.File localAbsPath, SvnCommitPacket committables, SVNURL reposRootUrl, java.io.File commitRelPath, SvnNgCommitUtil.ISvnUrlKindCallback urlKindCallback) private void
SvnNgLogMergeInfo.logForMergeInfoRangeList
(SVNURL sourceURL, java.util.List<java.lang.String> mergeSourcePaths, boolean filteringMerged, SVNMergeRangeList rangelist, boolean oldestRevsFirst, java.util.Map<java.lang.String, java.util.Map<java.lang.String, SVNMergeRangeList>> targetCatalog, java.lang.String absReposTargetPath, boolean discoverChangedPaths, java.lang.String[] revprops, ISvnObjectReceiver<SVNLogEntry> receiver) private SVNConflictVersion[]
SvnNgMergeCallback2.makeConflictVersions
(java.io.File victimAbsPath, SVNNodeKind nodeKind, SVNURL rootUrl, SvnNgMergeDriver.MergeSource mergeSource, java.io.File targetAbsPath) SvnNgMergeDriver.mergeCousinsAndSupplementMergeInfo
(java.io.File targetWCPath, SVNRepository repository1, SVNRepository repository2, SVNURL url1, long rev1, SVNURL url2, long rev2, long youngestCommonRev, SVNURL sourceReposRoot, SVNURL wcReposRoot, SVNDepth depth, boolean ignoreMergeInfo, boolean ignoreAncestry, boolean forceDelete, boolean recordOnly, boolean dryRun) java.util.List<SvnNgMergeDriver.MergeSource>
SvnNgMergeDriver.normalizeMergeSources
(SvnTarget source, SVNURL sourceURL, SVNURL sourceRootURL, SVNRevision pegRevision, java.util.Collection<SVNRevisionRange> rangesToMerge, SVNRepository repository) private void
SvnNgMergeDriver.populateRemainingRanges
(java.util.Map<java.io.File, SvnNgMergeDriver.MergePath> childrenWithMergeInfo, SVNURL sourceRootURL, SVNURL url1, long revision1, SVNURL url2, long revision2, boolean honorMergeInfo, SVNRepository repository, java.lang.String parentMergeSrcCanonPath) private void
SvnNgWcToReposCopy.queuePropChangeCommitItems
(java.io.File localAbsPath, SVNURL commitUrl, SvnCommitPacket packet, java.lang.String propName, SVNPropertyValue externalsPropertyValue, SVNURL repositoryRoot) private void
SvnNgAbstractUpdate.relegateExternal
(java.io.File localAbsPath, SVNURL url, SVNRevision revision, SVNRevision pegRevision, java.io.File definingPath, SVNFileType fileKind, int targetWorkingCopyFormat) private void
SvnNgRelocate.relocateExternals
(java.io.File localAbsPath, SVNExternal[] externals, SVNURL oldReposRootUrl, SVNURL newReposRootUrl) private void
SvnNgMergeDriver.removeNoOpSubtreeRanges
(SVNURL url1, long revision1, SVNURL url2, long revision2, java.io.File targetAbsPath, SVNRepository repository, java.util.Map<java.io.File, SvnNgMergeDriver.MergePath> childrenWithMergeInfo) private SVNURL
SvnNgMergeCallback2.reposLocations
(SVNURL url, long pegRevision, SVNURL reposRootUrl, java.lang.String reposUuid, long opRevision, SVNRepository svnRepository) private SVNURL
SvnNgDiff.resolvePeggedDiffTargetUrl
(SVNURL url, java.io.File path, SVNRevision pegRevision, SVNRevision revision) private SVNURL
SvnNgDiffSummarize.resolvePeggedDiffTargetUrl
(SVNURL url, java.io.File path, SVNRevision pegRevision, SVNRevision revision) private java.util.Map<java.lang.String,
SVNPropertyValue> SvnNgWcToWcCopy.resolvePinnedExternals
(java.util.Map<SvnTarget, java.util.List<SVNExternal>> externalsToPin, SvnNgWcToWcCopy.SvnCopyPair copyPair, SVNRepository svnRepository, SVNURL reposRootUrl) SvnNgMergeDriver.singleFileMergeGetFile
(SVNRepository repository, SVNURL url, long revision, java.io.File wcTarget) private void
SvnNgAbstractUpdate.switchDirExternal
(java.io.File localAbsPath, SVNURL url, SVNRevision revision, SVNRevision pegRevision, java.io.File definingPath) private void
SvnNgAbstractUpdate.switchFileExternal
(java.io.File localAbsPath, SVNURL url, SVNRevision pegRevision, SVNRevision revision, java.io.File defDirAbspath, SVNRepository repository, long repositoryRevision, SVNURL reposRootUrl) protected long
SvnNgAbstractUpdate.switchInternal
(java.io.File localAbsPath, java.io.File anchor, SVNURL switchUrl, SVNRevision revision, SVNRevision pegRevision, SVNDepth depth, boolean depthIsSticky, boolean ignoreExternals, boolean allowUnversionedObstructions, boolean ignoreAncestry, boolean sleepForTimestamp) static java.util.Map<java.lang.String,
java.lang.String> SvnNgCommitUtil.translateLockTokens
(java.util.Map<SVNURL, java.lang.String> lockTokens, SVNURL baseURL) void
SvnNgUpgrade.upgradeAddExternalInfo
(java.io.File localAbsPath, SVNNodeKind kind, java.io.File defLocalAbsPath, java.io.File reposRelPath, SVNURL reposRootUrl, java.lang.String reposUuid, long defPegRevision, long defRevision) void
SvnNgRelocate.validateRelocation
(java.lang.String uuid, SVNURL url, SVNURL rootUrl) Method parameters in org.tmatesoft.svn.core.internal.wc2.ng with type arguments of type SVNURLModifier and TypeMethodDescriptionprivate static void
SvnNgCommitUtil.collectLocks
(SVNWCContext context, java.io.File path, java.util.Map<SVNURL, java.lang.String> lockTokens) static void
SvnNgCommitUtil.harvestCommittables
(SVNWCContext context, java.io.File localAbsPath, SvnCommitPacket committables, java.util.Map<SVNURL, java.lang.String> lockTokens, SVNURL repositoryRootUrl, java.io.File copyModeRelPath, boolean copyModeRoot, SVNDepth depth, boolean justLocked, java.util.Collection<java.lang.String> changelists, java.util.Map<java.io.File, java.io.File> danglers, boolean skipFiles, boolean skipDirs, SvnNgCommitUtil.ISvnUrlKindCallback urlKindCallback, ISvnCommitParameters commitParameters, java.util.Map<java.io.File, java.lang.String> externalsStorage, ISVNEventHandler eventHandler) static SvnCommitPacket
SvnNgCommitUtil.harvestCommittables
(SVNWCContext context, SvnCommitPacket packet, java.util.Map<SVNURL, java.lang.String> lockTokens, java.io.File baseDirPath, java.util.Collection<java.lang.String> targets, int depthEmptyStart, SVNDepth depth, boolean justLocked, java.util.Collection<java.lang.String> changelists, SvnNgCommitUtil.ISvnUrlKindCallback urlKindCallback, ISvnCommitParameters commitParameters, java.util.Map<java.io.File, java.lang.String> externalsStorage) static java.util.Map<java.lang.String,
java.lang.String> SvnNgCommitUtil.translateLockTokens
(java.util.Map<SVNURL, java.lang.String> lockTokens, SVNURL baseURL) Constructors in org.tmatesoft.svn.core.internal.wc2.ng with parameters of type SVNURLModifierConstructorDescriptionSvnDiffSummarizeCallback
(java.io.File targetAbsPath, boolean reversed, SVNURL baseUrl, java.io.File baseDirectory, ISVNDiffStatusHandler handler) -
Uses of SVNURL in org.tmatesoft.svn.core.internal.wc2.old
Fields in org.tmatesoft.svn.core.internal.wc2.old declared as SVNURLMethods in org.tmatesoft.svn.core.internal.wc2.old that return SVNURLModifier and TypeMethodDescriptionprotected SVNURL
SvnOldRepositoryAccess.deriveLocation
(java.io.File path, SVNURL url, long[] pegRevisionNumber, SVNRevision pegRevision, SVNRepository repos, SVNWCAccess access) private static SVNURL
SvnOldUpgrade.getCanonicalURL
(SVNURL original) static SVNURL
SvnOldUpgrade.getEntryCopyFromURL
(SVNEntry entry) protected SVNURL
SvnOldRepositoryAccess.getEntryLocation
(java.io.File path, SVNEntry entry, long[] revNum, SVNRevision pegRevision) static SVNURL
SvnOldUpgrade.getEntryRepositoryRootURL
(SVNEntry entry) static SVNURL
SvnOldUpgrade.getEntryURL
(SVNEntry entry) protected SVNURL
protected SVNURL
SvnOldRelocate.run()
Methods in org.tmatesoft.svn.core.internal.wc2.old that return types with arguments of type SVNURLModifier and TypeMethodDescriptionprotected java.util.Map<SVNURL,
SVNMergeRangeList> SvnOldGetMergeInfo.run()
protected java.util.Collection<SVNURL>
SvnOldSuggestMergeSources.run()
Methods in org.tmatesoft.svn.core.internal.wc2.old with parameters of type SVNURLModifier and TypeMethodDescriptionprotected SVNURL
SvnOldRepositoryAccess.deriveLocation
(java.io.File path, SVNURL url, long[] pegRevisionNumber, SVNRevision pegRevision, SVNRepository repos, SVNWCAccess access) private static SVNURL
SvnOldUpgrade.getCanonicalURL
(SVNURL original) void
SvnOldGetProperties.handleProperty
(SVNURL url, SVNPropertyData property) void
SvnOldSetProperty.handleProperty
(SVNURL url, SVNPropertyData property) Method parameters in org.tmatesoft.svn.core.internal.wc2.old with type arguments of type SVNURLModifier and TypeMethodDescriptionprivate void
SvnOldUpgrade.ensureReposInfo
(SVNEntry entry, java.io.File localAbsPath, SvnOldUpgrade.RepositoryInfo lastRepositoryInfo, java.util.Map<SVNURL, java.lang.String> reposCache) private SvnOldUpgradeEntries.WriteBaton
SvnOldUpgrade.upgradeToWcng
(SvnOldUpgradeEntries.WriteBaton parentDirBaton, SVNWCDb db, java.io.File dirAbsPath, int oldFormat, ISVNWCDb.SVNWCDbUpgradeData data, java.util.Map<SVNURL, java.lang.String> reposCache, SvnOldUpgrade.RepositoryInfo reposInfo) private void
SvnOldUpgrade.upgradeWorkingCopy
(SvnOldUpgradeEntries.WriteBaton parentDirBaton, SVNWCDb db, java.io.File dirAbsPath, ISVNWCDb.SVNWCDbUpgradeData data, java.util.Map<SVNURL, java.lang.String> reposCache, SvnOldUpgrade.RepositoryInfo reposInfo) -
Uses of SVNURL in org.tmatesoft.svn.core.internal.wc2.remote
Methods in org.tmatesoft.svn.core.internal.wc2.remote with parameters of type SVNURLModifier and TypeMethodDescriptionprivate void
SvnRemoteRemoteMkDir.addURLParents
(java.util.List<SVNURL> targets, SVNURL url) private SvnInfo
SvnRemoteGetInfo.creatSvnInfoForEntry
(SVNURL root, java.lang.String uuid, SVNDirEntry entry, SVNURL entryURL, long revision, SVNLock lock) private void
SvnRemoteList.doList
(SVNRepository repos, long rev, ISVNDirEntryHandler handler, boolean fetchLocks, SVNDepth depth, int entryFields, SVNURL externalParentUrl, java.lang.String externalTarget) private void
SvnRemoteExport.handleExternals
(java.util.Map<java.lang.String, java.lang.String> externals, SVNURL fromUrl, java.io.File toPath, SVNURL reposRootUrl) void
SvnRemoteSetPropertyImpl.handleProperty
(SVNURL url, SVNPropertyData property) private static void
SvnRemoteList.list
(SVNRepository repository, java.lang.String path, long rev, SVNDepth depth, int entryFields, java.util.Map<SVNURL, SVNPropertyValue> externals, SVNURL externalParentUrl, java.lang.String externalTarget, ISVNDirEntryHandler handler) private void
SvnRemoteList.listExternalItems
(SVNRepository repository, SVNExternal[] externalItems, SVNURL externalParentUrl, SVNDepth depth, int entryFields, boolean fetchLocks, ISVNDirEntryHandler handler) private void
SvnRemoteGetInfo.pushDirInfo
(SVNRepository repos, SVNRevision rev, java.lang.String dir, SVNURL root, java.lang.String uuid, SVNURL url, java.util.Map<java.lang.String, SVNLock> locks, SVNDepth depth) static void
SvnRemoteGetProperties.remotePropertyGet
(SVNURL url, SVNNodeKind kind, java.lang.String path, SVNRepository repos, long revNumber, SVNDepth depth, ISvnObjectReceiver<SVNProperties> receiver) private SVNCommitInfo
SvnRemoteRemoteDelete.singleRepositoryDelete
(SVNRepository repository, SVNURL rootURL, java.util.List<java.lang.String> paths) Method parameters in org.tmatesoft.svn.core.internal.wc2.remote with type arguments of type SVNURLModifier and TypeMethodDescriptionprivate void
SvnRemoteRemoteMkDir.addURLParents
(java.util.List<SVNURL> targets, SVNURL url) private static void
SvnRemoteList.list
(SVNRepository repository, java.lang.String path, long rev, SVNDepth depth, int entryFields, java.util.Map<SVNURL, SVNPropertyValue> externals, SVNURL externalParentUrl, java.lang.String externalTarget, ISVNDirEntryHandler handler) private void
SvnRemoteList.listExternals
(SVNRepository repository, java.util.Map<SVNURL, SVNPropertyValue> externals, SVNDepth depth, int entryFields, boolean fetchLocks, ISVNDirEntryHandler handler) -
Uses of SVNURL in org.tmatesoft.svn.core.io
Fields in org.tmatesoft.svn.core.io declared as SVNURLModifier and TypeFieldDescriptionprotected SVNURL
SVNRepository.myLocation
protected SVNURL
SVNRepository.myRepositoryRoot
Methods in org.tmatesoft.svn.core.io that return SVNURLModifier and TypeMethodDescriptionstatic SVNURL
SVNRepositoryFactory.createLocalRepository
(java.io.File path, boolean enableRevisionProperties, boolean force) Creates a local blank FSFS-type repository.static SVNURL
SVNRepositoryFactory.createLocalRepository
(java.io.File path, java.lang.String uuid, boolean enableRevisionProperties, boolean force) Creates a local blank FSFS-type repository.static SVNURL
SVNRepositoryFactory.createLocalRepository
(java.io.File path, java.lang.String uuid, boolean enableRevisionProperties, boolean force, boolean pre14Compatible) Creates a local blank FSFS-type repository.static SVNURL
SVNRepositoryFactory.createLocalRepository
(java.io.File path, java.lang.String uuid, boolean enableRevisionProperties, boolean force, boolean pre14Compatible, boolean pre15Compatible) Creates a local blank FSFS-type repository.static SVNURL
SVNRepositoryFactory.createLocalRepository
(java.io.File path, java.lang.String uuid, boolean enableRevisionProperties, boolean force, boolean pre14Compatible, boolean pre15Compatible, boolean pre16Compatible) Creates a local blank FSFS-type repository.static SVNURL
SVNRepositoryFactory.createLocalRepository
(java.io.File path, java.lang.String uuid, boolean enableRevisionProperties, boolean force, boolean pre14Compatible, boolean pre15Compatible, boolean pre16Compatible, boolean pre17Compatible, boolean with17Compatible) SVNRepository.getLocation()
Returns the repository location to which this object is set.SVNRepository.getRepositoryRoot()
Deprecated.use #getRepositoryRoot(boolean) insteadSVNRepository.getRepositoryRoot
(boolean forceConnection) Gets a repository's root directory location.Methods in org.tmatesoft.svn.core.io with parameters of type SVNURLModifier and TypeMethodDescriptionstatic SVNRepository
Creates an SVNRepository driver according to the protocol that is to be used to access a repository.static SVNRepository
SVNRepositoryFactory.create
(SVNURL url, ISVNSession options) Creates an SVNRepository driver according to the protocol that is to be used to access a repository.protected abstract SVNRepository
SVNRepositoryFactory.createRepositoryImpl
(SVNURL url, ISVNSession session) ISVNTunnelProvider.createTunnelConnector
(SVNURL location) Returns a tunnel comand line matching the given subprotocol name.void
SVNRepository.diff
(SVNURL url, long targetRevision, long revision, java.lang.String target, boolean ignoreAncestry, boolean recursive, boolean getContents, ISVNReporterBaton reporter, ISVNEditor editor) void
SVNRepository.diff
(SVNURL url, long targetRevision, long revision, java.lang.String target, boolean ignoreAncestry, boolean recursive, ISVNReporterBaton reporter, ISVNEditor editor) abstract void
SVNRepository.diff
(SVNURL url, long targetRevision, long revision, java.lang.String target, boolean ignoreAncestry, SVNDepth depth, boolean getContents, ISVNReporterBaton reporter, ISVNEditor editor) Asks this repository access object to 'diff' a working copy againsttargetRevision
.void
SVNRepository.diff
(SVNURL url, long revision, java.lang.String target, boolean ignoreAncestry, boolean recursive, ISVNReporterBaton reporter, ISVNEditor editor) void
ISVNReporter.linkPath
(SVNURL url, java.lang.String path, java.lang.String lockToken, long revision, boolean startEmpty) Deprecated.void
ISVNReporter.linkPath
(SVNURL url, java.lang.String path, java.lang.String lockToken, long revision, SVNDepth depth, boolean startEmpty) Describes a local path as being at a particular revision to switch the path to a different repository location.void
SVNRepository.setLocation
(SVNURL url, boolean forceReconnect) Sets a new repository location for this object.protected void
SVNRepository.setRepositoryCredentials
(java.lang.String uuid, SVNURL rootURL) Caches identification parameters (UUID, rood directory location) of the repository with which this driver is working.void
SVNRepository.update
(SVNURL url, long revision, java.lang.String target, boolean recursive, ISVNReporterBaton reporter, ISVNEditor editor) Deprecated.abstract void
SVNRepository.update
(SVNURL url, long revision, java.lang.String target, SVNDepth depth, ISVNReporterBaton reporter, ISVNEditor editor) Asks this repository access object to 'switch' a versioned tree to a newurl
.Constructors in org.tmatesoft.svn.core.io with parameters of type SVNURL -
Uses of SVNURL in org.tmatesoft.svn.core.javahl
Methods in org.tmatesoft.svn.core.javahl with parameters of type SVNURLModifier and TypeMethodDescriptionint
JavaHLAuthenticationProvider.acceptServerAuthentication
(SVNURL url, java.lang.String realm, java.lang.Object serverAuth, boolean resultMayBeStored) private static java.lang.String
JavaHLAuthenticationProvider.getUserName
(java.lang.String userName, SVNURL url) void
JavaHLPropertyHandler.handleProperty
(SVNURL url, SVNPropertyData property) JavaHLAuthenticationProvider.requestClientAuthentication
(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored) -
Uses of SVNURL in org.tmatesoft.svn.core.javahl17
Methods in org.tmatesoft.svn.core.javahl17 with parameters of type SVNURLModifier and TypeMethodDescriptionint
JavaHLAuthenticationProvider.acceptServerAuthentication
(SVNURL url, java.lang.String realm, java.lang.Object serverAuth, boolean resultMayBeStored) private CommitInfo
SVNClientImpl.getCommitInfo
(SVNCommitInfo commitInfo, SVNURL repositoryRoot) private java.lang.String
SVNClientImpl.getUrlString
(SVNURL url) private static java.lang.String
JavaHLAuthenticationProvider.getUserName
(java.lang.String userName, SVNURL url) JavaHLAuthenticationProvider.requestClientAuthentication
(java.lang.String kind, SVNURL url, java.lang.String realm, SVNErrorMessage errorMessage, SVNAuthentication previousAuth, boolean authMayBeStored) Method parameters in org.tmatesoft.svn.core.javahl17 with type arguments of type SVNURLModifier and TypeMethodDescriptionprivate Mergeinfo
SVNClientImpl.getMergeinfo
(java.util.Map<SVNURL, SVNMergeRangeList> mergeInfoMap) -
Uses of SVNURL in org.tmatesoft.svn.core.wc
Fields in org.tmatesoft.svn.core.wc declared as SVNURLModifier and TypeFieldDescriptionprivate SVNURL
SVNCommitItem.myCopyFromURL
private SVNURL
SVNInfo.myCopyFromURL
private SVNURL
SVNEvent.myPreviousURL
private SVNURL
SVNStatus.myRemoteURL
private SVNURL
SVNInfo.myRepositoryRootURL
private SVNURL
SVNStatus.myRepositoryRootURL
private SVNURL
SVNCommitItem.myURL
private SVNURL
SVNCopySource.myURL
private SVNURL
SVNDiffStatus.myURL
private SVNURL
SVNEvent.myURL
private SVNURL
SVNInfo.myURL
private SVNURL
SVNStatus.myURL
Methods in org.tmatesoft.svn.core.wc that return SVNURLModifier and TypeMethodDescriptionSVNCommitItem.getCopyFromURL()
Gets the repository location of the versioned item's ancestor from which the item was copied.SVNInfo.getCopyFromURL()
Gets the URL (repository location) of the ancestor from which the item was copied.SVNEvent.getPreviousURL()
Returns the item's repository url before it will be changed by an update.SVNStatus.getRemoteURL()
Gets the item's latest repository location.SVNInfo.getRepositoryRootURL()
Gets the repository root url (where the repository itself is installed).SVNStatus.getRepositoryRootURL()
SVNBasicClient.getReposRoot
(java.io.File path, SVNURL url, SVNRevision pegRevision) Returns the root of the repository.SVNBasicClient.getReposRoot
(java.io.File path, SVNURL url, SVNRevision pegRevision, SVNAdminArea adminArea, SVNWCAccess access) Deprecated.SVNCommitItem.getURL()
Gets the versioned item's repository location.SVNCopySource.getURL()
Returns the repository url of the source.SVNDiffStatus.getURL()
Url of the item.SVNEvent.getURL()
Returns the repository URL that this event is fired for.SVNInfo.getURL()
Gets the item's URL - its repository location.SVNStatus.getURL()
Gets the item's repository location.Methods in org.tmatesoft.svn.core.wc that return types with arguments of type SVNURLModifier and TypeMethodDescriptionjava.util.Map<SVNURL,
SVNMergeRangeList> SVNDiffClient.doGetMergedMergeInfo
(java.io.File path, SVNRevision pegRevision) Returns mergeinfo as aMap
with merge source URLs (asSVNURL
) mapped to range lists (SVNMergeRangeList
).java.util.Map<SVNURL,
SVNMergeRangeList> SVNDiffClient.doGetMergedMergeInfo
(SVNURL url, SVNRevision pegRevision) Returns mergeinfo as aMap
with merge source URLs (asSVNURL
) mapped to range lists (SVNMergeRangeList
).java.util.Collection<SVNURL>
SVNDiffClient.doSuggestMergeSources
(java.io.File path, SVNRevision pegRevision) Returns a collection of potential merge sources (expressed as full repositoryURLs
) forpath
atpegRevision
.java.util.Collection<SVNURL>
SVNDiffClient.doSuggestMergeSources
(SVNURL url, SVNRevision pegRevision) Returns a collection of potential merge sources (expressed as full repositoryURLs
) forurl
atpegRevision
.Methods in org.tmatesoft.svn.core.wc with parameters of type SVNURLModifier and TypeMethodDescriptionstatic SVNInfo
SVNInfo.createInfo
(java.lang.String path, SVNURL reposRootURL, java.lang.String uuid, SVNURL url, SVNRevision revision, SVNDirEntry dirEntry, SVNLock lock) DefaultSVNRepositoryPool.createRepository
(SVNURL url, boolean mayReuse) Creates a new SVNRepository driver object.ISVNRepositoryPool.createRepository
(SVNURL url, boolean mayReuse) Creates a low-level SVN protocol driver to access a repository.SVNClientManager.createRepository
(SVNURL url, boolean mayReuse) Creates a low-level SVN protocol driver to directly work with a repository.void
SVNLogClient.doAnnotate
(SVNURL url, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, boolean ignoreMimeType, boolean includeMergedRevisions, ISVNAnnotateHandler handler, java.lang.String inputEncoding) Invokeshandler
on each line-blame item associated with revisionendRevision
ofurl
, usingstartRevision
as the default source of all blame.void
SVNLogClient.doAnnotate
(SVNURL url, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, boolean ignoreMimeType, ISVNAnnotateHandler handler, java.lang.String inputEncoding) Obtains annotation information for each file text line from a repository and passes it to a provided annotation handler.void
SVNLogClient.doAnnotate
(SVNURL url, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, ISVNAnnotateHandler handler) Obtains annotation information for each file text line from a repository and passes it to a provided annotation handler.void
SVNLogClient.doAnnotate
(SVNURL url, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, ISVNAnnotateHandler handler, java.lang.String inputEncoding) Obtains annotation information for each file text line from a repository and passes it to a provided annotation handler.long
SVNUpdateClient.doCheckout
(SVNURL url, java.io.File dstPath, SVNRevision pegRevision, SVNRevision revision, boolean recursive) Deprecated.long
SVNUpdateClient.doCheckout
(SVNURL url, java.io.File dstPath, SVNRevision pegRevision, SVNRevision revision, boolean recursive, boolean force) Deprecated.long
SVNUpdateClient.doCheckout
(SVNURL url, java.io.File dstPath, SVNRevision pegRevision, SVNRevision revision, SVNDepth depth, boolean allowUnversionedObstructions) Checks out a working copy ofurl
atrevision
, looked up atpegRevision
, usingdstPath
as the root directory of the newly checked out working copy.SVNCopyClient.doCopy
(SVNCopySource[] sources, SVNURL dst, boolean isMove, boolean makeParents, boolean failWhenDstExists, java.lang.String commitMessage, SVNProperties revisionProperties) Copies each source insources
todst
.SVNCopyClient.doCopy
(SVNCopySource[] sources, SVNURL dst, boolean isMove, boolean makeParents, boolean failWhenDstExists, java.lang.String commitMessage, SVNProperties revisionProperties, boolean pinExternals, java.util.Map<SvnTarget, java.util.List<SVNExternal>> externalsToPin) Committs removing specified URL-paths from the repository.SVNCommitClient.doDelete
(SVNURL[] urls, java.lang.String commitMessage, SVNProperties revisionProperties) Deletes items from a repository.void
SVNDiffClient.doDiff
(java.io.File path1, SVNRevision rN, SVNURL url2, SVNRevision rM, boolean recursive, boolean useAncestry, java.io.OutputStream result) void
SVNDiffClient.doDiff
(java.io.File path1, SVNRevision rN, SVNURL url2, SVNRevision rM, SVNDepth depth, boolean useAncestry, java.io.OutputStream result, java.util.Collection<java.lang.String> changeLists) Produces diff output which describes the delta betweenpath1
/rN
andurl2
/rM
.void
SVNDiffClient.doDiff
(SVNURL url1, SVNRevision rN, java.io.File path2, SVNRevision rM, boolean recursive, boolean useAncestry, java.io.OutputStream result) void
SVNDiffClient.doDiff
(SVNURL url1, SVNRevision rN, java.io.File path2, SVNRevision rM, SVNDepth depth, boolean useAncestry, java.io.OutputStream result, java.util.Collection<java.lang.String> changeLists) Produces diff output which describes the delta betweenurl1
/rN
andpath2
/rM
.void
SVNDiffClient.doDiff
(SVNURL url1, SVNRevision rN, SVNURL url2, SVNRevision rM, boolean recursive, boolean useAncestry, java.io.OutputStream result) Deprecated.void
SVNDiffClient.doDiff
(SVNURL url1, SVNRevision rN, SVNURL url2, SVNRevision rM, SVNDepth depth, boolean useAncestry, java.io.OutputStream result) Produces diff output which describes the delta betweenurl1
/rN
andurl2
/rM
.void
SVNDiffClient.doDiff
(SVNURL url, SVNRevision pegRevision, SVNRevision rN, SVNRevision rM, boolean recursive, boolean useAncestry, java.io.OutputStream result) void
SVNDiffClient.doDiff
(SVNURL url, SVNRevision pegRevision, SVNRevision rN, SVNRevision rM, SVNDepth depth, boolean useAncestry, java.io.OutputStream result) Produces diff output which describes the delta betweenurl
in peg revisionpegRevision
, as it changed betweenrN
andrM
.void
SVNDiffClient.doDiffStatus
(java.io.File path1, SVNRevision rN, SVNURL url2, SVNRevision rM, boolean recursive, boolean useAncestry, ISVNDiffStatusHandler handler) void
SVNDiffClient.doDiffStatus
(java.io.File path1, SVNRevision rN, SVNURL url2, SVNRevision rM, SVNDepth depth, boolean useAncestry, ISVNDiffStatusHandler handler) Produces a diff summary which lists the changed items betweenpath1
/rN
andurl2
/rM
without creating text deltas.void
SVNDiffClient.doDiffStatus
(SVNURL url1, SVNRevision rN, java.io.File path2, SVNRevision rM, boolean recursive, boolean useAncestry, ISVNDiffStatusHandler handler) void
SVNDiffClient.doDiffStatus
(SVNURL url1, SVNRevision rN, java.io.File path2, SVNRevision rM, SVNDepth depth, boolean useAncestry, ISVNDiffStatusHandler handler) Produces a diff summary which lists the changed items betweenurl1
/rN
andpath2
/rM
without creating text deltas.void
SVNDiffClient.doDiffStatus
(SVNURL url1, SVNRevision rN, SVNURL url2, SVNRevision rM, boolean recursive, boolean useAncestry, ISVNDiffStatusHandler handler) void
SVNDiffClient.doDiffStatus
(SVNURL url1, SVNRevision rN, SVNURL url2, SVNRevision rM, SVNDepth depth, boolean useAncestry, ISVNDiffStatusHandler handler) Produces a diff summary which lists the changed items betweenurl1
/rN
andurl2
/rM
without creating text deltas.void
SVNDiffClient.doDiffStatus
(SVNURL url, SVNRevision rN, SVNRevision rM, SVNRevision pegRevision, SVNDepth depth, boolean useAncestry, ISVNDiffStatusHandler handler) Produces a diff summary which lists the changed items betweenurl
in peg revisionpegRevision
, as it changed betweenrN
andrM
.long
SVNUpdateClient.doExport
(SVNURL url, java.io.File dstPath, SVNRevision pegRevision, SVNRevision revision, java.lang.String eolStyle, boolean force, boolean recursive) long
SVNUpdateClient.doExport
(SVNURL url, java.io.File dstPath, SVNRevision pegRevision, SVNRevision revision, java.lang.String eolStyle, boolean overwrite, SVNDepth depth) Exports the contents of a subversion repository into a 'clean' directory (meaning a directory with no administrative directories).void
SVNWCClient.doGetFileContents
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean expandKeywords, java.io.OutputStream dst) Outputs the content of file identified byurl
andrevision
to the streamdst
.void
SVNDiffClient.doGetLogEligibleMergeInfo
(java.io.File path, SVNRevision pegRevision, SVNURL mergeSrcURL, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Drives a log entryhandler
with the revisions eligible for merge frommergeSrcURL
(as ofsrcPegRevision
) intopath
(as ofpegRevision
).void
SVNDiffClient.doGetLogEligibleMergeInfo
(SVNURL url, SVNRevision pegRevision, java.io.File mergeSrcPath, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Drives a log entryhandler
with the revisions eligible for merge frommergeSrcPath
(as ofsrcPegRevision
) intourl
(as ofpegRevision
).void
SVNDiffClient.doGetLogEligibleMergeInfo
(SVNURL url, SVNRevision pegRevision, SVNURL mergeSrcURL, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Drives a log entryhandler
with the revisions eligible for merge frommergeSrcURL
(as ofsrcPegRevision
) intourl
(as ofpegRevision
).void
SVNDiffClient.doGetLogMergedMergeInfo
(java.io.File path, SVNRevision pegRevision, SVNURL mergeSrcURL, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Drives a log entryhandler
with the revisions merged frommergeSrcURL
(as ofsrcPegRevision
) intopath
(as ofpegRevision
).void
SVNDiffClient.doGetLogMergedMergeInfo
(SVNURL url, SVNRevision pegRevision, java.io.File mergeSrcPath, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Drives a log entryhandler
with the revisions merged frommergeSrcPath
(as ofsrcPegRevision
) intourl
(as ofpegRevision
).void
SVNDiffClient.doGetLogMergedMergeInfo
(SVNURL url, SVNRevision pegRevision, SVNURL mergeSrcURL, SVNRevision srcPegRevision, boolean discoverChangedPaths, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Drives a log entryhandler
with the revisions merged frommergeSrcURL
(as ofsrcPegRevision
) intourl
(as ofpegRevision
).java.util.Map<SVNURL,
SVNMergeRangeList> SVNDiffClient.doGetMergedMergeInfo
(SVNURL url, SVNRevision pegRevision) Returns mergeinfo as aMap
with merge source URLs (asSVNURL
) mapped to range lists (SVNMergeRangeList
).SVNWCClient.doGetProperty
(SVNURL url, java.lang.String propName, SVNRevision pegRevision, SVNRevision revision) Gets the value of the propertypropName
forurl
.void
SVNWCClient.doGetProperty
(SVNURL url, java.lang.String propName, SVNRevision pegRevision, SVNRevision revision, boolean recursive, ISVNPropertyHandler handler) void
SVNWCClient.doGetProperty
(SVNURL url, java.lang.String propName, SVNRevision pegRevision, SVNRevision revision, SVNDepth depth, ISVNPropertyHandler handler) Invokeshandler
on paths covered bydepth
starting with the specifiedpath
.long
SVNWCClient.doGetRevisionProperty
(SVNURL url, java.lang.String propName, SVNRevision revision, ISVNPropertyHandler handler) Gets an unversioned revision property from a repository and passes it to a provided property handler.SVNCommitClient.doImport
(java.io.File path, SVNURL dstURL, java.lang.String commitMessage, boolean recursive) Deprecated.SVNCommitClient.doImport
(java.io.File path, SVNURL dstURL, java.lang.String commitMessage, boolean useGlobalIgnores, boolean recursive) Deprecated.SVNCommitClient.doImport
(java.io.File path, SVNURL dstURL, java.lang.String commitMessage, SVNProperties revisionProperties, boolean useGlobalIgnores, boolean ignoreUnknownNodeTypes, SVNDepth depth) Imports file or directorypath
into repository directorydstURL
at HEAD revision.SVNCommitClient.doImport
(java.io.File path, SVNURL dstURL, java.lang.String commitMessage, SVNProperties revisionProperties, boolean useGlobalIgnores, boolean ignoreUnknownNodeTypes, SVNDepth depth, boolean applyAutoProperties) Imports file or directorypath
into repository directorydstURL
at HEAD revision.SVNWCClient.doInfo
(SVNURL url, SVNRevision pegRevision, SVNRevision revision) Collects and returns information on a single item in a repository.void
SVNWCClient.doInfo
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean recursive, ISVNInfoHandler handler) Deprecated.void
SVNWCClient.doInfo
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, SVNDepth depth, ISVNInfoHandler handler) Invokeshandler
to return information abouturl
inrevision
.void
SVNLogClient.doList
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean fetchLocks, boolean recursive, ISVNDirEntryHandler handler) Browses directory entries from a repository and uses the provided dir entry handler to process them.void
SVNLogClient.doList
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean recursive, ISVNDirEntryHandler handler) void
SVNLogClient.doList
(SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean fetchLocks, SVNDepth depth, int entryFields, ISVNDirEntryHandler handler) Reports the directory entry, and possibly children, forurl
atrevision
.void
Locks file items in a repository so that no other user can commit changes to them.void
SVNLogClient.doLog
(SVNURL url, java.lang.String[] paths, SVNRevision pegRevision, java.util.Collection<SVNRevisionRange> revisionRanges, boolean stopOnCopy, boolean discoverChangedPaths, boolean includeMergedRevisions, long limit, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Invokeshandler
on each log message from the givenin turn, inclusive (but never invokes
handler
on a given log message more than once).void
SVNLogClient.doLog
(SVNURL url, java.lang.String[] paths, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, boolean stopOnCopy, boolean discoverChangedPaths, boolean includeMergedRevisions, long limit, java.lang.String[] revisionProperties, ISVNLogEntryHandler handler) Invokeshandler
on each log message fromstartRevision
toendRevision
in turn, inclusive (but never invokeshandler
on a given log message more than once).void
SVNLogClient.doLog
(SVNURL url, java.lang.String[] paths, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, boolean stopOnCopy, boolean discoverChangedPaths, long limit, ISVNLogEntryHandler handler) Gets commit log messages with other revision specific information from a repository and passes them to a log entry handler for processing.void
SVNDiffClient.doMerge
(java.io.File path1, SVNRevision revision1, SVNURL url2, SVNRevision revision2, java.io.File dstPath, boolean recursive, boolean useAncestry, boolean force, boolean dryRun) void
SVNDiffClient.doMerge
(java.io.File path1, SVNRevision revision1, SVNURL url2, SVNRevision revision2, java.io.File dstPath, SVNDepth depth, boolean useAncestry, boolean force, boolean dryRun, boolean recordOnly) Merges changes frompath1
/revision1
tourl2
/revision2
into the working-copy pathdstPath
.void
SVNDiffClient.doMerge
(SVNURL url1, SVNRevision revision1, java.io.File path2, SVNRevision revision2, java.io.File dstPath, boolean recursive, boolean useAncestry, boolean force, boolean dryRun) void
SVNDiffClient.doMerge
(SVNURL url1, SVNRevision revision1, java.io.File path2, SVNRevision revision2, java.io.File dstPath, SVNDepth depth, boolean useAncestry, boolean force, boolean dryRun, boolean recordOnly) Merges changes fromurl1
/revision1
topath2
/revision2
into the working-copy pathdstPath
.void
SVNDiffClient.doMerge
(SVNURL url1, SVNRevision pegRevision, java.util.Collection<SVNRevisionRange> rangesToMerge, java.io.File dstPath, SVNDepth depth, boolean useAncestry, boolean force, boolean dryRun, boolean recordOnly) Merges the changes betweenurl1
in peg revisionpegRevision
, as it changed between the ranges described inrangesToMerge
.void
SVNDiffClient.doMerge
(SVNURL url1, SVNRevision revision1, SVNURL url2, SVNRevision revision2, java.io.File dstPath, boolean recursive, boolean useAncestry, boolean force, boolean dryRun) void
SVNDiffClient.doMerge
(SVNURL url1, SVNRevision revision1, SVNURL url2, SVNRevision revision2, java.io.File dstPath, SVNDepth depth, boolean useAncestry, boolean force, boolean dryRun, boolean recordOnly) Merges changes fromurl1
/revision1
tourl2
/revision2
into the working-copy pathdstPath
.void
SVNDiffClient.doMerge
(SVNURL url1, SVNRevision pegRevision, SVNRevision revision1, SVNRevision revision2, java.io.File dstPath, boolean recursive, boolean useAncestry, boolean force, boolean dryRun) void
SVNDiffClient.doMergeReIntegrate
(SVNURL srcURL, SVNRevision pegRevision, java.io.File dstPath, boolean dryRun) Performs a reintegration merge ofsrcURL
atpegRevision
intodstPath
.Committs a creation of a new directory/directories in the repository.SVNCommitClient.doMkDir
(SVNURL[] urls, java.lang.String commitMessage, SVNProperties revisionProperties, boolean makeParents) Creates directory(ies) in a repository.void
SVNUpdateClient.doRelocate
(java.io.File dst, SVNURL oldURL, SVNURL newURL, boolean recursive) Substitutes the beginning part of a Working Copy's URL with a new one.SVNWCClient.doSetProperty
(SVNURL url, java.lang.String propName, SVNPropertyValue propValue, SVNRevision baseRevision, java.lang.String commitMessage, SVNProperties revisionProperties, boolean skipChecks, ISVNPropertyHandler handler) SetspropName
topropValue
onpath
.void
SVNWCClient.doSetRevisionProperty
(SVNURL url, SVNRevision revision, java.lang.String propName, SVNPropertyValue propValue, boolean force, ISVNPropertyHandler handler) SetpropName
topropValue
on revisionrevision
in the repository represented bypath
.java.util.Collection<SVNURL>
SVNDiffClient.doSuggestMergeSources
(SVNURL url, SVNRevision pegRevision) Returns a collection of potential merge sources (expressed as full repositoryURLs
) forurl
atpegRevision
.long
SVNUpdateClient.doSwitch
(java.io.File file, SVNURL url, SVNRevision revision, boolean recursive) Deprecated.long
SVNUpdateClient.doSwitch
(java.io.File file, SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean recursive) Deprecated.long
SVNUpdateClient.doSwitch
(java.io.File file, SVNURL url, SVNRevision pegRevision, SVNRevision revision, boolean recursive, boolean force) Deprecated.long
SVNUpdateClient.doSwitch
(java.io.File path, SVNURL url, SVNRevision pegRevision, SVNRevision revision, SVNDepth depth, boolean allowUnversionedObstructions, boolean depthIsSticky) Switches working treepath
tourl
\pegRevision
atrevision
.long
SVNUpdateClient.doSwitch
(java.io.File path, SVNURL url, SVNRevision pegRevision, SVNRevision revision, SVNDepth depth, boolean allowUnversionedObstructions, boolean depthIsSticky, boolean ignoreAncestry) void
Unlocks file items in a repository.SVNBasicClient.getReposRoot
(java.io.File path, SVNURL url, SVNRevision pegRevision) Returns the root of the repository.SVNBasicClient.getReposRoot
(java.io.File path, SVNURL url, SVNRevision pegRevision, SVNAdminArea adminArea, SVNWCAccess access) Deprecated.ISVNExternalsHandler.handleExternal
(java.io.File externalPath, SVNURL externalURL, SVNRevision externalRevision, SVNRevision externalPegRevision, java.lang.String externalsDefinition, SVNRevision externalsWorkingRevision) Handles an external definition and says whether to skip it or not.void
ISVNPropertyHandler.handleProperty
(SVNURL url, SVNPropertyData property) Handles remote item's properies (located in a repository).void
SVNEvent.setPreviousURL
(SVNURL url) Sets the item url which will be changed by the operation after this event is handled.void
SVNStatus.setRemoteStatus
(SVNURL url, SVNStatusType contents, SVNStatusType props, SVNLock lock, SVNNodeKind kind, SVNRevision revision, java.util.Date date, java.lang.String author) Sets the item's remote status.void
SVNStatus.setRemoteURL
(SVNURL remoteURL) void
SVNStatus.setRepositoryRootURL
(SVNURL repositoryRootURL) void
Sets the repository url.void
Constructors in org.tmatesoft.svn.core.wc with parameters of type SVNURLModifierConstructorDescriptionSVNCommitItem
(java.io.File file, SVNURL URL, SVNURL copyFromURL, SVNNodeKind kind, SVNRevision revision, SVNRevision copyFromRevision, boolean isAdded, boolean isDeleted, boolean isPropertiesModified, boolean isContentsModified, boolean isCopied, boolean locked) Constructs and initializes an SVNCommitItem object.SVNCopySource
(SVNRevision pegRevision, SVNRevision revision, SVNURL url) Creates a newSVNCopySource
object.SVNDiffStatus
(java.io.File file, SVNURL url, java.lang.String path, SVNStatusType type, boolean propsModified, SVNNodeKind kind) Instantiates a new object.SVNInfo
(java.io.File file, SVNURL url, SVNURL rootURL, long revision, SVNNodeKind kind, java.lang.String uuid, long committedRevision, java.lang.String committedDate, java.lang.String author, java.lang.String schedule, SVNURL copyFromURL, long copyFromRevision, java.lang.String textTime, java.lang.String propTime, java.lang.String checksum, java.lang.String conflictOld, java.lang.String conflictNew, java.lang.String conflictWorking, java.lang.String propRejectFile, SVNLock lock, SVNDepth depth, java.lang.String changelistName, long wcSize, SVNTreeConflictDescription treeConflict) SVNInfo
(java.lang.String path, SVNURL url, SVNRevision revision, SVNNodeKind kind, java.lang.String uuid, SVNURL reposRootURL, long comittedRevision, java.util.Date date, java.lang.String author, SVNLock lock, SVNDepth depth, long size) SVNStatus
(SVNURL url, java.io.File file, SVNNodeKind kind, SVNRevision revision, SVNRevision committedRevision, java.util.Date committedDate, java.lang.String author, SVNStatusType contentsStatus, SVNStatusType propertiesStatus, SVNStatusType remoteContentsStatus, SVNStatusType remotePropertiesStatus, boolean isLocked, boolean isCopied, boolean isSwitched, boolean isFileExternal, java.io.File conflictNewFile, java.io.File conflictOldFile, java.io.File conflictWrkFile, java.io.File projRejectFile, java.lang.String copyFromURL, SVNRevision copyFromRevision, SVNLock remoteLock, SVNLock localLock, java.util.Map entryProperties, java.lang.String changelistName, int wcFormatVersion, SVNTreeConflictDescription treeConflict) Constructs an SVNStatus object filling it with status information details. -
Uses of SVNURL in org.tmatesoft.svn.core.wc.admin
Methods in org.tmatesoft.svn.core.wc.admin that return SVNURLModifier and TypeMethodDescriptionSVNAdminClient.doCreateRepository
(java.io.File path, java.lang.String uuid, boolean enableRevisionProperties, boolean force) Creates an FSFS-type repository.SVNAdminClient.doCreateRepository
(java.io.File path, java.lang.String uuid, boolean enableRevisionProperties, boolean force, boolean pre14Compatible) Creates an FSFS-type repository.SVNAdminClient.doCreateRepository
(java.io.File path, java.lang.String uuid, boolean enableRevisionProperties, boolean force, boolean pre14Compatible, boolean pre15Compatible) Creates an FSFS-type repository.SVNAdminClient.doCreateRepository
(java.io.File path, java.lang.String uuid, boolean enableRevisionProperties, boolean force, boolean pre14Compatible, boolean pre15Compatible, boolean pre16Compatible) Creates an FSFS-type repository.SVNAdminClient.doCreateRepository
(java.io.File path, java.lang.String uuid, boolean enableRevisionProperties, boolean force, boolean pre14Compatible, boolean pre15Compatible, boolean pre16Compatible, boolean pre17Compatible, boolean with17Compatible) Methods in org.tmatesoft.svn.core.wc.admin with parameters of type SVNURLModifier and TypeMethodDescriptionprivate void
SVNAdminClient.checkIfRepositoryIsAtRoot
(SVNRepository repos, SVNURL url) protected SVNRepository
SVNAdminBasicClient.createRepository
(SVNURL url, java.lang.String uuid, boolean mayReuse) void
SVNAdminClient.doCompleteSynchronize
(SVNURL fromURL, SVNURL toURL) Completely synchronizes two repositories.void
SVNAdminClient.doCopyRevisionProperties
(SVNURL toURL, long startRevision, long endRevision) Copies revision properties from the source repository starting atstartRevision
and up toendRevision
to corresponding revisions of the destination repository represented bytoURL
.Returns information about the synchronization repository located attoURL
.void
SVNAdminClient.doInitialize
(SVNURL fromURL, SVNURL toURL) Initializes synchronization between source and target repositories.void
SVNAdminClient.doSynchronize
(SVNURL toURL) Synchronizes the repository at the given url. -
Uses of SVNURL in org.tmatesoft.svn.core.wc2
Fields in org.tmatesoft.svn.core.wc2 declared as SVNURLModifier and TypeFieldDescriptionprivate SVNURL
SvnCommitItem.copyFromUrl
private SVNURL
SvnStatus.copyFromUrl
private SVNURL
SvnWorkingCopyInfo.copyFromUrl
private SVNURL
SvnRelocate.fromUrl
private SVNURL
SvnStatus.repositoryRootUrl
private SVNURL
SvnInfo.repositoryRootURL
private SVNURL
SvnRelocate.toUrl
private SVNURL
SvnCommitItem.url
private SVNURL
SvnDiffStatus.url
private SVNURL
SvnInfo.url
private SVNURL
SvnTarget.url
Fields in org.tmatesoft.svn.core.wc2 with type parameters of type SVNURLModifier and TypeFieldDescriptionprivate java.util.Map<SVNURL,
java.util.Collection<SvnCommitItem>> SvnCommitPacket.items
private java.util.Map<SVNURL,
java.lang.String> SvnCommitPacket.lockTokens
Methods in org.tmatesoft.svn.core.wc2 that return SVNURLModifier and TypeMethodDescriptionprivate SVNURL
SvnTarget.getCanonicalUrl
(SVNURL url) SvnCommitItem.getCopyFromUrl()
Returns URL from whose the item was copied.SvnStatus.getCopyFromUrl()
Gets the URL (repository location) of the ancestor from which the item was copied.SvnWorkingCopyInfo.getCopyFromUrl()
Gets the URL (repository location) of the ancestor from which the item was copied.SvnRelocate.getFromUrl()
Returns the old beginning part of thetarget
's repository URL that should be overwritten.SvnInfo.getRepositoryRootUrl()
Gets the repository root url (where the repository itself is installed).SvnStatus.getRepositoryRootUrl()
Returns the item's repository root URL.SvnRelocate.getToUrl()
Gets the new beginning part for the repository location or full repository location that will overwritetarget
's repository URL.SvnCommitItem.getUrl()
Returns commit item's repository URL.SvnDiffStatus.getUrl()
Returns URL of the item.SvnInfo.getUrl()
Gets the item's URL - its repository location.SvnTarget.getURL()
Returns target's URL, if target is not URL returns null.Methods in org.tmatesoft.svn.core.wc2 that return types with arguments of type SVNURLModifier and TypeMethodDescriptionjava.util.Map<SVNURL,
java.lang.String> SvnCommitPacket.getLockTokens()
Returns all lock tokens of commit packet.java.util.Collection<SVNURL>
SvnCommitPacket.getRepositoryRoots()
Returns all unique repository root URLs of all commit items in the commit packetMethods in org.tmatesoft.svn.core.wc2 with parameters of type SVNURLModifier and TypeMethodDescriptionSvnCommitPacket.addItem
(java.io.File path, SVNNodeKind kind, SVNURL repositoryRoot, java.lang.String repositoryPath, long revision, java.lang.String copyFromPath, long copyFromRevision, java.io.File movedFromAbsPath, int flags) Adds commit item with the path, kind, repository root URL, repository path, revision number, copied from path, copied from revision number, flags to the commit packet.SvnCommitPacket.addItem
(java.io.File path, SVNURL rootUrl, SVNNodeKind kind, SVNURL url, long revision, SVNURL copyFromUrl, long copyFromRevision, int flags) Adds commit item with the path, repository root URL, kind, URL, revision number, revision number, copied from path, copied from revision number, flags to the commit packet.void
SvnCommitPacket.addItem
(SvnCommitItem item, SVNURL repositoryRoot) Adds commit item to the commit packet with the repository root URL.private void
SvnDiffSummarize.ensureArgumentsAreValid
(SVNURL url1, java.io.File path1, SVNRevision revision1, SVNURL url2, java.io.File path2, SVNRevision revision2, SVNRevision pegRevision) static SvnTarget
Creates a target from URLstatic SvnTarget
SvnTarget.fromURL
(SVNURL url, SVNRevision pegRevision) Creates a target from URL and its peg revisionprivate SVNURL
SvnTarget.getCanonicalUrl
(SVNURL url) private java.lang.String
SvnCommitPacket.getItemKey
(SvnCommitItem item, SVNURL rootURL, boolean combinePackets) java.util.Collection<SvnCommitItem>
Returns all commit items in the commit packet with the corresponding repository root URLboolean
Tests whether the commit packet has commit items with the repository root URL.void
SvnCommitItem.setCopyFromUrl
(SVNURL copyFromUrl) Sets URL from whose the item was copied.void
SvnStatus.setCopyFromUrl
(SVNURL copyFromUrl) Sets the URL (repository location) of the ancestor from which the item was copied.void
SvnWorkingCopyInfo.setCopyFromUrl
(SVNURL copyFromURL) Sets the URL (repository location) of the ancestor from which the item was copied.void
SvnRelocate.setFromUrl
(SVNURL fromUrl) Sets the old beginning part of thetarget
's repository URL that should be overwritten.void
SvnStatus.setRepositoryRootUrl
(SVNURL repositoryRootUrl) Sets the item's repository root URL.void
SvnInfo.setRepositoryRootURL
(SVNURL repositoryRootURL) Sets the repository root url (where the repository itself is installed).void
Sets the new beginning part for the repository location or full repository location that will overwritetarget
's repository URL.void
Sets commit item's repository URL.void
Sets URL of the item.void
Sets the item's URL - its repository location.Method parameters in org.tmatesoft.svn.core.wc2 with type arguments of type SVNURLModifier and TypeMethodDescriptionvoid
SvnCommitPacket.setLockTokens
(java.util.Map<SVNURL, java.lang.String> lockTokens) Sets commit packet's lock tokens, containing the information about locks within commit packet URLs.Constructors in org.tmatesoft.svn.core.wc2 with parameters of type SVNURLConstructor parameters in org.tmatesoft.svn.core.wc2 with type arguments of type SVNURLModifierConstructorDescriptionprivate
SvnCommitPacket
(java.util.Map<SVNURL, java.util.Collection<SvnCommitItem>> items, java.util.Map<java.lang.String, SvnCommitItem> itemsByPath, java.lang.Object lockingContext, java.util.Map<SVNURL, java.lang.String> lockTokens, ISvnCommitRunner runner, java.util.Set<java.lang.String> skippedPaths) -
Uses of SVNURL in org.tmatesoft.svn.core.wc2.admin
Fields in org.tmatesoft.svn.core.wc2.admin declared as SVNURLModifier and TypeFieldDescriptionprivate SVNURL
SvnRepositoryInitialize.fromURL
private SVNURL
SvnRepositorySyncInfo.toUrl
private SVNURL
SvnRepositoryCopyRevisionProperties.toURL
private SVNURL
SvnRepositoryInitialize.toURL
private SVNURL
SvnRepositorySynchronize.toURL
Methods in org.tmatesoft.svn.core.wc2.admin that return SVNURLModifier and TypeMethodDescriptionSvnRepositoryInitialize.getFromURL()
SvnRepositorySyncInfo.getToUrl()
SvnRepositoryCopyRevisionProperties.getToURL()
SvnRepositoryInitialize.getToURL()
SvnRepositorySynchronize.getToURL()
Methods in org.tmatesoft.svn.core.wc2.admin with parameters of type SVNURLModifier and TypeMethodDescriptionvoid
SvnRepositoryInitialize.setFromURL
(SVNURL fromURL) void
void
void
void
-
Uses of SVNURL in org.tmatesoft.svn.core.wc2.hooks
Methods in org.tmatesoft.svn.core.wc2.hooks with parameters of type SVNURLModifier and TypeMethodDescriptionISvnExternalsHandler.handleExternal
(java.io.File externalPath, SVNURL externalURL, SVNRevision externalRevision, SVNRevision externalPegRevision, java.lang.String externalsDefinition, SVNRevision externalsWorkingRevision) Handles an external definition and says whether to skip it or not.
SVNPasswordAuthentication.newInstance(String, char[], boolean, SVNURL, boolean)