org.schmant.task.svnkit
Interface SvnRepositoryConfigurable<T extends SvnRepositoryConfigurable<T>>

Type Parameters:
T - Concrete type of implementing class
All Known Implementing Classes:
AbstractSvnCommitTaskFactory, AbstractSvnTaskFactory, SvnExportTF, SvnUrlToUrlCopyTF

public interface SvnRepositoryConfigurable<T extends SvnRepositoryConfigurable<T>>

This is implemented by all task factories that can be configured with a Subversion repository location.

Since:
0.7
Author:
Karl Gustafsson
Task_package:
org.tmatesoft.svn

Method Summary
 T setRepositoryLocation(String url)
          Set the repository location.
 T setRepositoryLocation(SVNURL url)
           
 

Method Detail

setRepositoryLocation

T setRepositoryLocation(String url)
Set the repository location. The location is parsed into a SVNURL object using the SVNURL.parseURIDecoded method.

Parameters:
url - The repository URL.
Returns:
this.

setRepositoryLocation

T setRepositoryLocation(SVNURL url)