View Javadoc
1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.1 on 2014-09-13 07:14:28,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.scm.providers.clearcase.settings;
9   
10  /**
11   * Class Settings.
12   * 
13   * @version $Revision$ $Date$
14   */
15  @SuppressWarnings( "all" )
16  public class Settings
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * Clearcase viewstore path.
26       */
27      private String viewstore;
28  
29      /**
30       * Do you want to use vws parameter when clearcase provider run
31       * mkview?
32       */
33      private boolean useVWSParameter = true;
34  
35      /**
36       * Are you using ClearCase LT or UCM version ?
37       */
38      private String clearcaseType;
39  
40      /**
41       * The format of the USER pattern in lhistory command. For
42       * example, it can be "-8.8".
43       */
44      private String changelogUserFormat;
45  
46      /**
47       * Field modelEncoding.
48       */
49      private String modelEncoding = "UTF-8";
50  
51  
52        //-----------/
53       //- Methods -/
54      //-----------/
55  
56      /**
57       * Get the format of the USER pattern in lhistory command. For
58       * example, it can be "-8.8".
59       * 
60       * @return String
61       */
62      public String getChangelogUserFormat()
63      {
64          return this.changelogUserFormat;
65      } //-- String getChangelogUserFormat()
66  
67      /**
68       * Get are you using ClearCase LT or UCM version ?
69       * 
70       * @return String
71       */
72      public String getClearcaseType()
73      {
74          return this.clearcaseType;
75      } //-- String getClearcaseType()
76  
77      /**
78       * Get the modelEncoding field.
79       * 
80       * @return String
81       */
82      public String getModelEncoding()
83      {
84          return this.modelEncoding;
85      } //-- String getModelEncoding()
86  
87      /**
88       * Get clearcase viewstore path.
89       * 
90       * @return String
91       */
92      public String getViewstore()
93      {
94          return this.viewstore;
95      } //-- String getViewstore()
96  
97      /**
98       * Get do you want to use vws parameter when clearcase provider
99       * run mkview?
100      * 
101      * @return boolean
102      */
103     public boolean isUseVWSParameter()
104     {
105         return this.useVWSParameter;
106     } //-- boolean isUseVWSParameter()
107 
108     /**
109      * Set the format of the USER pattern in lhistory command. For
110      * example, it can be "-8.8".
111      * 
112      * @param changelogUserFormat
113      */
114     public void setChangelogUserFormat( String changelogUserFormat )
115     {
116         this.changelogUserFormat = changelogUserFormat;
117     } //-- void setChangelogUserFormat( String )
118 
119     /**
120      * Set are you using ClearCase LT or UCM version ?
121      * 
122      * @param clearcaseType
123      */
124     public void setClearcaseType( String clearcaseType )
125     {
126         this.clearcaseType = clearcaseType;
127     } //-- void setClearcaseType( String )
128 
129     /**
130      * Set the modelEncoding field.
131      * 
132      * @param modelEncoding
133      */
134     public void setModelEncoding( String modelEncoding )
135     {
136         this.modelEncoding = modelEncoding;
137     } //-- void setModelEncoding( String )
138 
139     /**
140      * Set do you want to use vws parameter when clearcase provider
141      * run mkview?
142      * 
143      * @param useVWSParameter
144      */
145     public void setUseVWSParameter( boolean useVWSParameter )
146     {
147         this.useVWSParameter = useVWSParameter;
148     } //-- void setUseVWSParameter( boolean )
149 
150     /**
151      * Set clearcase viewstore path.
152      * 
153      * @param viewstore
154      */
155     public void setViewstore( String viewstore )
156     {
157         this.viewstore = viewstore;
158     } //-- void setViewstore( String )
159 
160 }