1 // =================== DO NOT EDIT THIS FILE ==================== 2 // Generated by Modello 2.1.2, 3 // any modifications will be overwritten. 4 // ============================================================== 5 6 package org.apache.maven.scm.providers.gitlib.settings; 7 8 /** 9 * Class Settings. 10 * 11 * @version $Revision$ $Date$ 12 */ 13 @SuppressWarnings( "all" ) 14 public class Settings 15 implements java.io.Serializable 16 { 17 18 //--------------------------/ 19 //- Class/Member Variables -/ 20 //--------------------------/ 21 22 /** 23 * 24 * git format allowed by changelog command. 25 * 26 */ 27 private String revParseDateFormat = "yyyy-MM-dd HH:mm:ss"; 28 29 /** 30 * 31 * Traces the execution of a git command. 32 * could be 1,2, true or a file location 33 * . 34 */ 35 private String traceGitCommand = ""; 36 37 /** 38 * 39 * The actual name of the git executable 40 * . 41 */ 42 private String gitCommand = "git"; 43 44 /** 45 * use the option --no-verify (can prevent trailing whitespace 46 * issue with cygwin). 47 */ 48 private boolean commitNoVerify = false; 49 50 /** 51 * Field modelEncoding. 52 */ 53 private String modelEncoding = "UTF-8"; 54 55 56 //-----------/ 57 //- Methods -/ 58 //-----------/ 59 60 /** 61 * Get the actual name of the git executable. 62 * 63 * @return String 64 */ 65 public String getGitCommand() 66 { 67 return this.gitCommand; 68 } //-- String getGitCommand() 69 70 /** 71 * Get the modelEncoding field. 72 * 73 * @return String 74 */ 75 public String getModelEncoding() 76 { 77 return this.modelEncoding; 78 } //-- String getModelEncoding() 79 80 /** 81 * Get git format allowed by changelog command. 82 * 83 * @return String 84 */ 85 public String getRevParseDateFormat() 86 { 87 return this.revParseDateFormat; 88 } //-- String getRevParseDateFormat() 89 90 /** 91 * Get traces the execution of a git command. 92 * could be 1,2, true or a file location. 93 * 94 * @return String 95 */ 96 public String getTraceGitCommand() 97 { 98 return this.traceGitCommand; 99 } //-- String getTraceGitCommand() 100 101 /** 102 * Get use the option --no-verify (can prevent trailing 103 * whitespace issue with cygwin). 104 * 105 * @return boolean 106 */ 107 public boolean isCommitNoVerify() 108 { 109 return this.commitNoVerify; 110 } //-- boolean isCommitNoVerify() 111 112 /** 113 * Set use the option --no-verify (can prevent trailing 114 * whitespace issue with cygwin). 115 * 116 * @param commitNoVerify a commitNoVerify object. 117 */ 118 public void setCommitNoVerify( boolean commitNoVerify ) 119 { 120 this.commitNoVerify = commitNoVerify; 121 } //-- void setCommitNoVerify( boolean ) 122 123 /** 124 * Set the actual name of the git executable. 125 * 126 * @param gitCommand a gitCommand object. 127 */ 128 public void setGitCommand( String gitCommand ) 129 { 130 this.gitCommand = gitCommand; 131 } //-- void setGitCommand( String ) 132 133 /** 134 * Set the modelEncoding field. 135 * 136 * @param modelEncoding a modelEncoding object. 137 */ 138 public void setModelEncoding( String modelEncoding ) 139 { 140 this.modelEncoding = modelEncoding; 141 } //-- void setModelEncoding( String ) 142 143 /** 144 * Set git format allowed by changelog command. 145 * 146 * @param revParseDateFormat a revParseDateFormat object. 147 */ 148 public void setRevParseDateFormat( String revParseDateFormat ) 149 { 150 this.revParseDateFormat = revParseDateFormat; 151 } //-- void setRevParseDateFormat( String ) 152 153 /** 154 * Set traces the execution of a git command. 155 * could be 1,2, true or a file location. 156 * 157 * @param traceGitCommand a traceGitCommand object. 158 */ 159 public void setTraceGitCommand( String traceGitCommand ) 160 { 161 this.traceGitCommand = traceGitCommand; 162 } //-- void setTraceGitCommand( String ) 163 164 }