__init__(self,
        svnurl=None,
        baseURL=None,
        defaultBranch=None,
        directory=None,
        username=None,
        password=None,
        extra_args=None,
        keep_on_purge=None,
        ignore_ignores=None,
        always_purge=None,
        depth=None,
        **kwargs)
     (Constructor)
  
   | source code 
     | 
    
  
  
  
    - Parameters:
 
    
        svnurl (string) - the URL which points to the Subversion server, combining the 
          access method (HTTP, ssh, local file), the repository host/port, 
          the repository path, the sub-tree within the repository, and the 
          branch to check out. Use exactly one of svnurl and 
          baseURL. 
        baseURL - if branches are enabled, this is the base URL to which a branch 
          name will be appended. It should probably end in a slash. Use 
          exactly one of svnurl and baseURL. 
        defaultBranch - if branches are enabled, this is the branch to use if the Build 
          does not specify one explicitly. It will simply be appended to 
          baseURL and the result handed to the SVN command. 
        username (string) - username to pass to svn's --username 
        password (string) - password to pass to svn's --password 
      
    - Overrides:
        process.buildstep.BuildStep.__init__
    
 
   
 |