View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.continuum.xmlrpc.project;
9   
10    //---------------------------------/
11   //- Imported classes and packages -/
12  //---------------------------------/
13  
14  import org.apache.continuum.xmlrpc.release.ContinuumReleaseResult;
15  import org.apache.continuum.xmlrpc.repository.AbstractPurgeConfiguration;
16  import org.apache.continuum.xmlrpc.repository.DirectoryPurgeConfiguration;
17  import org.apache.continuum.xmlrpc.repository.LocalRepository;
18  import org.apache.continuum.xmlrpc.repository.RepositoryPurgeConfiguration;
19  import org.apache.continuum.xmlrpc.utils.BuildTrigger;
20  import org.apache.maven.continuum.xmlrpc.scm.ChangeFile;
21  import org.apache.maven.continuum.xmlrpc.scm.ChangeSet;
22  import org.apache.maven.continuum.xmlrpc.scm.ScmResult;
23  import org.apache.maven.continuum.xmlrpc.system.Installation;
24  import org.apache.maven.continuum.xmlrpc.system.Profile;
25  import org.apache.maven.continuum.xmlrpc.system.SystemConfiguration;
26  
27  /**
28   * Class BuildProjectTask.
29   * 
30   * @version $Revision$ $Date$
31   */
32  @SuppressWarnings( "all" )
33  public class BuildProjectTask
34      implements java.io.Serializable
35  {
36  
37        //--------------------------/
38       //- Class/Member Variables -/
39      //--------------------------/
40  
41      /**
42       * Field projectId.
43       */
44      private int projectId = 0;
45  
46      /**
47       * Field buildDefinitionId.
48       */
49      private int buildDefinitionId = 0;
50  
51      /**
52       * Field timestamp.
53       */
54      private long timestamp = 0L;
55  
56      /**
57       * Field trigger.
58       */
59      private int trigger = 0;
60  
61      /**
62       * Field maxExecutionTime.
63       */
64      private long maxExecutionTime = 0L;
65  
66      /**
67       * Field projectName.
68       */
69      private String projectName;
70  
71      /**
72       * Field buildDefinitionLabel.
73       */
74      private String buildDefinitionLabel;
75  
76  
77        //-----------/
78       //- Methods -/
79      //-----------/
80  
81      /**
82       * Get the buildDefinitionId field.
83       * 
84       * @return int
85       */
86      public int getBuildDefinitionId()
87      {
88          return this.buildDefinitionId;
89      } //-- int getBuildDefinitionId()
90  
91      /**
92       * Get the buildDefinitionLabel field.
93       * 
94       * @return String
95       */
96      public String getBuildDefinitionLabel()
97      {
98          return this.buildDefinitionLabel;
99      } //-- String getBuildDefinitionLabel()
100 
101     /**
102      * Get the maxExecutionTime field.
103      * 
104      * @return long
105      */
106     public long getMaxExecutionTime()
107     {
108         return this.maxExecutionTime;
109     } //-- long getMaxExecutionTime()
110 
111     /**
112      * Get the projectId field.
113      * 
114      * @return int
115      */
116     public int getProjectId()
117     {
118         return this.projectId;
119     } //-- int getProjectId()
120 
121     /**
122      * Get the projectName field.
123      * 
124      * @return String
125      */
126     public String getProjectName()
127     {
128         return this.projectName;
129     } //-- String getProjectName()
130 
131     /**
132      * Get the timestamp field.
133      * 
134      * @return long
135      */
136     public long getTimestamp()
137     {
138         return this.timestamp;
139     } //-- long getTimestamp()
140 
141     /**
142      * Get the trigger field.
143      * 
144      * @return int
145      */
146     public int getTrigger()
147     {
148         return this.trigger;
149     } //-- int getTrigger()
150 
151     /**
152      * Set the buildDefinitionId field.
153      * 
154      * @param buildDefinitionId
155      */
156     public void setBuildDefinitionId( int buildDefinitionId )
157     {
158         this.buildDefinitionId = buildDefinitionId;
159     } //-- void setBuildDefinitionId( int )
160 
161     /**
162      * Set the buildDefinitionLabel field.
163      * 
164      * @param buildDefinitionLabel
165      */
166     public void setBuildDefinitionLabel( String buildDefinitionLabel )
167     {
168         this.buildDefinitionLabel = buildDefinitionLabel;
169     } //-- void setBuildDefinitionLabel( String )
170 
171     /**
172      * Set the maxExecutionTime field.
173      * 
174      * @param maxExecutionTime
175      */
176     public void setMaxExecutionTime( long maxExecutionTime )
177     {
178         this.maxExecutionTime = maxExecutionTime;
179     } //-- void setMaxExecutionTime( long )
180 
181     /**
182      * Set the projectId field.
183      * 
184      * @param projectId
185      */
186     public void setProjectId( int projectId )
187     {
188         this.projectId = projectId;
189     } //-- void setProjectId( int )
190 
191     /**
192      * Set the projectName field.
193      * 
194      * @param projectName
195      */
196     public void setProjectName( String projectName )
197     {
198         this.projectName = projectName;
199     } //-- void setProjectName( String )
200 
201     /**
202      * Set the timestamp field.
203      * 
204      * @param timestamp
205      */
206     public void setTimestamp( long timestamp )
207     {
208         this.timestamp = timestamp;
209     } //-- void setTimestamp( long )
210 
211     /**
212      * Set the trigger field.
213      * 
214      * @param trigger
215      */
216     public void setTrigger( int trigger )
217     {
218         this.trigger = trigger;
219     } //-- void setTrigger( int )
220 
221 }