Tabnine Logo
SVNCopyClient.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.tmatesoft.svn.core.wc.SVNCopyClient
constructor

Best Java code snippets using org.tmatesoft.svn.core.wc.SVNCopyClient.<init> (Showing top 9 results out of 315)

origin: org.tmatesoft.svnkit/svnkit

/**
 * Returns an instance of the {@link SVNCopyClient} class. 
 * 
 * <p>
 * If it's the first time this method is being called the object is
 * created, initialized and then returned. Further calls to this
 * method will get the same object instantiated at that moment of 
 * the first call. <b>SVNClientManager</b> does not reinstantiate
 * its <b>SVN</b>*<b>Client</b> objects. 
 * 
 * @return an <b>SVNCopyClient</b> instance
 */
public SVNCopyClient getCopyClient() {
  if (myCopyClient == null) {
    myCopyClient = myOperationFactory != null ? new SVNCopyClient(myOperationFactory) : new SVNCopyClient(this, myOptions);
    initClientDefaults(myCopyClient);
  }
  return myCopyClient;
}
origin: org.jvnet.hudson.svnkit/svnkit

/**
 * Constructs and initializes an <b>SVNMoveClient</b> object
 * with the specified run-time configuration and repository pool object.
 * 
 * <p/>
 * If <code>options</code> is <span class="javakeyword">null</span>,
 * then this <b>SVNMoveClient</b> will be using a default run-time
 * configuration driver  which takes client-side settings from the
 * default SVN's run-time configuration area but is not able to
 * change those settings (read more on {@link ISVNOptions} and {@link SVNWCUtil}).
 * 
 * <p/>
 * If <code>repositoryPool</code> is <span class="javakeyword">null</span>,
 * then {@link org.tmatesoft.svn.core.io.SVNRepositoryFactory} will be used to create {@link SVNRepository repository access objects}.
 *
 * @param repositoryPool   a repository pool object
 * @param options          a run-time configuration options driver
 */
public SVNMoveClient(ISVNRepositoryPool repositoryPool, ISVNOptions options) {
  super(repositoryPool, options);
  myWCClient = new SVNWCClient(repositoryPool, options);
  myCopyClient = new SVNCopyClient(repositoryPool, options);
}
origin: org.codehaus.jtstand/jtstand-svnkit

/**
 * Constructs and initializes an <b>SVNMoveClient</b> object
 * with the specified run-time configuration and repository pool object.
 * 
 * <p/>
 * If <code>options</code> is <span class="javakeyword">null</span>,
 * then this <b>SVNMoveClient</b> will be using a default run-time
 * configuration driver  which takes client-side settings from the
 * default SVN's run-time configuration area but is not able to
 * change those settings (read more on {@link ISVNOptions} and {@link SVNWCUtil}).
 * 
 * <p/>
 * If <code>repositoryPool</code> is <span class="javakeyword">null</span>,
 * then {@link org.tmatesoft.svn.core.io.SVNRepositoryFactory} will be used to create {@link SVNRepository repository access objects}.
 *
 * @param repositoryPool   a repository pool object
 * @param options          a run-time configuration options driver
 */
public SVNMoveClient(ISVNRepositoryPool repositoryPool, ISVNOptions options) {
  super(repositoryPool, options);
  myWCClient = new SVNWCClient(repositoryPool, options);
  myCopyClient = new SVNCopyClient(repositoryPool, options);
}
origin: org.codehaus.jtstand/jtstand-svnkit

/**
 * Constructs and initializes an <b>SVNMoveClient</b> object
 * with the specified run-time configuration and authentication 
 * drivers.
 * 
 * <p>
 * If <code>options</code> is <span class="javakeyword">null</span>,
 * then this <b>SVNMoveClient</b> will be using a default run-time
 * configuration driver  which takes client-side settings from the 
 * default SVN's run-time configuration area but is not able to
 * change those settings (read more on {@link ISVNOptions} and {@link SVNWCUtil}).  
 * 
 * <p>
 * If <code>authManager</code> is <span class="javakeyword">null</span>,
 * then this <b>SVNMoveClient</b> will be using a default authentication
 * and network layers driver (see {@link SVNWCUtil#createDefaultAuthenticationManager()})
 * which uses server-side settings and auth storage from the 
 * default SVN's run-time configuration area (or system properties
 * if that area is not found).
 * 
 * @param authManager an authentication and network layers driver
 * @param options     a run-time configuration options driver     
 */
public SVNMoveClient(ISVNAuthenticationManager authManager, ISVNOptions options) {
  super(authManager, options);
  myWCClient = new SVNWCClient(authManager, options);
  myCopyClient = new SVNCopyClient(authManager, options);
}
origin: org.jvnet.hudson.svnkit/svnkit

/**
 * Constructs and initializes an <b>SVNMoveClient</b> object
 * with the specified run-time configuration and authentication 
 * drivers.
 * 
 * <p>
 * If <code>options</code> is <span class="javakeyword">null</span>,
 * then this <b>SVNMoveClient</b> will be using a default run-time
 * configuration driver  which takes client-side settings from the 
 * default SVN's run-time configuration area but is not able to
 * change those settings (read more on {@link ISVNOptions} and {@link SVNWCUtil}).  
 * 
 * <p>
 * If <code>authManager</code> is <span class="javakeyword">null</span>,
 * then this <b>SVNMoveClient</b> will be using a default authentication
 * and network layers driver (see {@link SVNWCUtil#createDefaultAuthenticationManager()})
 * which uses server-side settings and auth storage from the 
 * default SVN's run-time configuration area (or system properties
 * if that area is not found).
 * 
 * @param authManager an authentication and network layers driver
 * @param options     a run-time configuration options driver     
 */
public SVNMoveClient(ISVNAuthenticationManager authManager, ISVNOptions options) {
  super(authManager, options);
  myWCClient = new SVNWCClient(authManager, options);
  myCopyClient = new SVNCopyClient(authManager, options);
}
origin: org.tmatesoft/svn

/**
 * Returns an instance of the {@link SVNCopyClient} class. 
 * 
 * <p>
 * If it's the first time this method is being called the object is
 * created, initialized and then returned. Further calls to this
 * method will get the same object instantiated at that moment of 
 * the first call. <b>SVNClientManager</b> does not reinstantiate
 * its <b>SVN</b>*<b>Client</b> objects. 
 * 
 * @return an <b>SVNCopyClient</b> instance
 */
public SVNCopyClient getCopyClient() {
  if (myCopyClient == null) {
    myCopyClient = new SVNCopyClient(this, myOptions);
    myCopyClient.setEventHandler(myEventHandler);
    myCopyClient.setDebugLog(getDebugLog());
  }
  return myCopyClient;
}
origin: org.codehaus.jtstand/jtstand-svnkit

/**
 * Returns an instance of the {@link SVNCopyClient} class. 
 * 
 * <p>
 * If it's the first time this method is being called the object is
 * created, initialized and then returned. Further calls to this
 * method will get the same object instantiated at that moment of 
 * the first call. <b>SVNClientManager</b> does not reinstantiate
 * its <b>SVN</b>*<b>Client</b> objects. 
 * 
 * @return an <b>SVNCopyClient</b> instance
 */
public SVNCopyClient getCopyClient() {
  if (myCopyClient == null) {
    myCopyClient = new SVNCopyClient(this, myOptions);
    myCopyClient.setEventHandler(myEventHandler);
    myCopyClient.setDebugLog(getDebugLog());
    myCopyClient.setIgnoreExternals(myIsIgnoreExternals);
  }
  return myCopyClient;
}
origin: org.jvnet.hudson.svnkit/svnkit

/**
 * Returns an instance of the {@link SVNCopyClient} class. 
 * 
 * <p>
 * If it's the first time this method is being called the object is
 * created, initialized and then returned. Further calls to this
 * method will get the same object instantiated at that moment of 
 * the first call. <b>SVNClientManager</b> does not reinstantiate
 * its <b>SVN</b>*<b>Client</b> objects. 
 * 
 * @return an <b>SVNCopyClient</b> instance
 */
public SVNCopyClient getCopyClient() {
  if (myCopyClient == null) {
    myCopyClient = new SVNCopyClient(this, myOptions);
    myCopyClient.setEventHandler(myEventHandler);
    myCopyClient.setDebugLog(getDebugLog());
    myCopyClient.setIgnoreExternals(myIsIgnoreExternals);
  }
  return myCopyClient;
}
origin: org.nuiton/scmwebeditor-svn

SVNCopyClient copyClient = new SVNCopyClient(connection.getManager(), connection.getSvnOption());
org.tmatesoft.svn.core.wcSVNCopyClient<init>

Javadoc

Constructs and initializes an SVNCopyClient object with the specified run-time configuration and authentication drivers.

If options is null, then this SVNCopyClient will be using a default run-time configuration driver which takes client-side settings from the default SVN's run-time configuration area but is not able to change those settings (read more on ISVNOptions and SVNWCUtil).

If authManager is null, then this SVNCopyClient will be using a default authentication and network layers driver (see SVNWCUtil#createDefaultAuthenticationManager()) which uses server-side settings and auth storage from the default SVN's run-time configuration area (or system properties if that area is not found).

Popular methods of SVNCopyClient

  • doCopy
  • setCommitHandler
    Sets an implementation of ISVNCommitHandler to the commit handler that will be used during commit op
  • setEventHandler
  • getCommitHandler
    Returns the specified commit handler (if set) being in use or a default one ( DefaultSVNCommitHandle
  • getCommitParameters
    Returns commit parameters. If no user parameters were previously specified, once creates and returns
  • setDebugLog
  • getExternalsHandler
    Returns an externals handler used by this update client. If no user's handler is provided then ISVNE
  • setIgnoreExternals
  • setOptions
  • copyDisjointWCToWC
  • expandCopySources
  • setupCopy
  • expandCopySources,
  • setupCopy,
  • copyDir,
  • copyFile,
  • createRepository,
  • createWCAccess,
  • dispatchEvent,
  • getEventDispatcher,
  • getOperationsFactory

Popular in Java

  • Updating database using SQL prepared statement
  • getContentResolver (Context)
  • scheduleAtFixedRate (Timer)
  • runOnUiThread (Activity)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Permission (java.security)
    Legacy security code; do not use.
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now