Class Settings
- java.lang.Object
-
- org.apache.maven.scm.providers.svn.settings.Settings
-
- All Implemented Interfaces:
java.io.Serializable
public class Settings extends java.lang.Object implements java.io.SerializableClass Settings.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Settings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetConfigDirectory()Get instructs Subversion to read configuration information from the specified directory instead of the default location.java.lang.StringgetCygwinMountPath()Get the cygwin mount path.java.lang.StringgetModelEncoding()Get the modelEncoding field.booleanisTrustServerCert()Get switch on to use svn command line option:--trust-server-cert.booleanisUseAuthCache()Get switch on if you want to cache authentication credentials (Warning: this will overwrite existing authentication credentials on your working copy).booleanisUseCygwinPath()Get must betrueif svn is a cygwin svn command.booleanisUseNonInteractive()Get switch off if you do not like to use--non-interactivee.g.voidsetConfigDirectory(java.lang.String configDirectory)Set instructs Subversion to read configuration information from the specified directory instead of the default location.voidsetCygwinMountPath(java.lang.String cygwinMountPath)Set the cygwin mount path.voidsetModelEncoding(java.lang.String modelEncoding)Set the modelEncoding field.voidsetTrustServerCert(boolean trustServerCert)Set switch on to use svn command line option:--trust-server-cert.voidsetUseAuthCache(boolean useAuthCache)Set switch on if you want to cache authentication credentials (Warning: this will overwrite existing authentication credentials on your working copy).voidsetUseCygwinPath(boolean useCygwinPath)Set must betrueif svn is a cygwin svn command.voidsetUseNonInteractive(boolean useNonInteractive)Set switch off if you do not like to use--non-interactivee.g.
-
-
-
Method Detail
-
getConfigDirectory
public java.lang.String getConfigDirectory()
Get instructs Subversion to read configuration information from the specified directory instead of the default location.- Returns:
- String
-
getCygwinMountPath
public java.lang.String getCygwinMountPath()
Get the cygwin mount path.- Returns:
- String
-
getModelEncoding
public java.lang.String getModelEncoding()
Get the modelEncoding field.- Returns:
- String
-
isTrustServerCert
public boolean isTrustServerCert()
Get switch on to use svn command line option:--trust-server-cert.- Returns:
- boolean
-
isUseAuthCache
public boolean isUseAuthCache()
Get switch on if you want to cache authentication credentials (Warning: this will overwrite existing authentication credentials on your working copy). If you don't change this, the command line option--no-auth-cacheis used.- Returns:
- boolean
-
isUseCygwinPath
public boolean isUseCygwinPath()
Get must betrueif svn is a cygwin svn command.- Returns:
- boolean
-
isUseNonInteractive
public boolean isUseNonInteractive()
Get switch off if you do not like to use--non-interactivee.g. on Leopard (see SCM-402).- Returns:
- boolean
-
setConfigDirectory
public void setConfigDirectory(java.lang.String configDirectory)
Set instructs Subversion to read configuration information from the specified directory instead of the default location.- Parameters:
configDirectory-
-
setCygwinMountPath
public void setCygwinMountPath(java.lang.String cygwinMountPath)
Set the cygwin mount path.- Parameters:
cygwinMountPath-
-
setModelEncoding
public void setModelEncoding(java.lang.String modelEncoding)
Set the modelEncoding field.- Parameters:
modelEncoding-
-
setTrustServerCert
public void setTrustServerCert(boolean trustServerCert)
Set switch on to use svn command line option:--trust-server-cert.- Parameters:
trustServerCert-
-
setUseAuthCache
public void setUseAuthCache(boolean useAuthCache)
Set switch on if you want to cache authentication credentials (Warning: this will overwrite existing authentication credentials on your working copy). If you don't change this, the command line option--no-auth-cacheis used.- Parameters:
useAuthCache-
-
setUseCygwinPath
public void setUseCygwinPath(boolean useCygwinPath)
Set must betrueif svn is a cygwin svn command.- Parameters:
useCygwinPath-
-
setUseNonInteractive
public void setUseNonInteractive(boolean useNonInteractive)
Set switch off if you do not like to use--non-interactivee.g. on Leopard (see SCM-402).- Parameters:
useNonInteractive-
-
-