Class Settings
- java.lang.Object
-
- org.apache.maven.scm.providers.gitlib.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
-
-
Field Summary
Fields Modifier and Type Field Description private booleancommitNoVerifyuse the option --no-verify (can prevent trailing whitespace issue with cygwin).private java.lang.StringgitCommandThe actual name of the git executable .private java.lang.StringmodelEncodingField modelEncoding.private java.lang.StringrevParseDateFormatgit format allowed by changelog command.private java.lang.StringtraceGitCommandTraces the execution of a git command.
-
Constructor Summary
Constructors Constructor Description Settings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetGitCommand()Get the actual name of the git executable.java.lang.StringgetModelEncoding()Get the modelEncoding field.java.lang.StringgetRevParseDateFormat()Get git format allowed by changelog command.java.lang.StringgetTraceGitCommand()Get traces the execution of a git command.booleanisCommitNoVerify()Get use the option --no-verify (can prevent trailing whitespace issue with cygwin).voidsetCommitNoVerify(boolean commitNoVerify)Set use the option --no-verify (can prevent trailing whitespace issue with cygwin).voidsetGitCommand(java.lang.String gitCommand)Set the actual name of the git executable.voidsetModelEncoding(java.lang.String modelEncoding)Set the modelEncoding field.voidsetRevParseDateFormat(java.lang.String revParseDateFormat)Set git format allowed by changelog command.voidsetTraceGitCommand(java.lang.String traceGitCommand)Set traces the execution of a git command.
-
-
-
Field Detail
-
revParseDateFormat
private java.lang.String revParseDateFormat
git format allowed by changelog command.
-
traceGitCommand
private java.lang.String traceGitCommand
Traces the execution of a git command. could be 1,2, true or a file location .
-
gitCommand
private java.lang.String gitCommand
The actual name of the git executable .
-
commitNoVerify
private boolean commitNoVerify
use the option --no-verify (can prevent trailing whitespace issue with cygwin).
-
modelEncoding
private java.lang.String modelEncoding
Field modelEncoding.
-
-
Method Detail
-
getGitCommand
public java.lang.String getGitCommand()
Get the actual name of the git executable.- Returns:
- String
-
getModelEncoding
public java.lang.String getModelEncoding()
Get the modelEncoding field.- Returns:
- String
-
getRevParseDateFormat
public java.lang.String getRevParseDateFormat()
Get git format allowed by changelog command.- Returns:
- String
-
getTraceGitCommand
public java.lang.String getTraceGitCommand()
Get traces the execution of a git command. could be 1,2, true or a file location.- Returns:
- String
-
isCommitNoVerify
public boolean isCommitNoVerify()
Get use the option --no-verify (can prevent trailing whitespace issue with cygwin).- Returns:
- boolean
-
setCommitNoVerify
public void setCommitNoVerify(boolean commitNoVerify)
Set use the option --no-verify (can prevent trailing whitespace issue with cygwin).- Parameters:
commitNoVerify- a commitNoVerify object.
-
setGitCommand
public void setGitCommand(java.lang.String gitCommand)
Set the actual name of the git executable.- Parameters:
gitCommand- a gitCommand object.
-
setModelEncoding
public void setModelEncoding(java.lang.String modelEncoding)
Set the modelEncoding field.- Parameters:
modelEncoding- a modelEncoding object.
-
setRevParseDateFormat
public void setRevParseDateFormat(java.lang.String revParseDateFormat)
Set git format allowed by changelog command.- Parameters:
revParseDateFormat- a revParseDateFormat object.
-
setTraceGitCommand
public void setTraceGitCommand(java.lang.String traceGitCommand)
Set traces the execution of a git command. could be 1,2, true or a file location.- Parameters:
traceGitCommand- a traceGitCommand object.
-
-