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.web.model;
9   
10  /**
11   * Class DistributedBuildSummary.
12   * 
13   * @version $Revision$ $Date$
14   */
15  @SuppressWarnings( "all" )
16  public class DistributedBuildSummary
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * Field projectId.
26       */
27      private int projectId = 0;
28  
29      /**
30       * Field projectName.
31       */
32      private String projectName;
33  
34      /**
35       * Field projectGroupName.
36       */
37      private String projectGroupName;
38  
39      /**
40       * Field buildDefinitionId.
41       */
42      private int buildDefinitionId = 0;
43  
44      /**
45       * Field buildDefinitionLabel.
46       */
47      private String buildDefinitionLabel;
48  
49      /**
50       * Field buildAgentUrl.
51       */
52      private String buildAgentUrl;
53  
54      /**
55       * Field hashCode.
56       */
57      private int hashCode = 0;
58  
59  
60        //-----------/
61       //- Methods -/
62      //-----------/
63  
64      /**
65       * Get the buildAgentUrl field.
66       * 
67       * @return String
68       */
69      public String getBuildAgentUrl()
70      {
71          return this.buildAgentUrl;
72      } //-- String getBuildAgentUrl()
73  
74      /**
75       * Get the buildDefinitionId field.
76       * 
77       * @return int
78       */
79      public int getBuildDefinitionId()
80      {
81          return this.buildDefinitionId;
82      } //-- int getBuildDefinitionId()
83  
84      /**
85       * Get the buildDefinitionLabel field.
86       * 
87       * @return String
88       */
89      public String getBuildDefinitionLabel()
90      {
91          return this.buildDefinitionLabel;
92      } //-- String getBuildDefinitionLabel()
93  
94      /**
95       * Get the hashCode field.
96       * 
97       * @return int
98       */
99      public int getHashCode()
100     {
101         return this.hashCode;
102     } //-- int getHashCode()
103 
104     /**
105      * Get the projectGroupName field.
106      * 
107      * @return String
108      */
109     public String getProjectGroupName()
110     {
111         return this.projectGroupName;
112     } //-- String getProjectGroupName()
113 
114     /**
115      * Get the projectId field.
116      * 
117      * @return int
118      */
119     public int getProjectId()
120     {
121         return this.projectId;
122     } //-- int getProjectId()
123 
124     /**
125      * Get the projectName field.
126      * 
127      * @return String
128      */
129     public String getProjectName()
130     {
131         return this.projectName;
132     } //-- String getProjectName()
133 
134     /**
135      * Set the buildAgentUrl field.
136      * 
137      * @param buildAgentUrl
138      */
139     public void setBuildAgentUrl( String buildAgentUrl )
140     {
141         this.buildAgentUrl = buildAgentUrl;
142     } //-- void setBuildAgentUrl( String )
143 
144     /**
145      * Set the buildDefinitionId field.
146      * 
147      * @param buildDefinitionId
148      */
149     public void setBuildDefinitionId( int buildDefinitionId )
150     {
151         this.buildDefinitionId = buildDefinitionId;
152     } //-- void setBuildDefinitionId( int )
153 
154     /**
155      * Set the buildDefinitionLabel field.
156      * 
157      * @param buildDefinitionLabel
158      */
159     public void setBuildDefinitionLabel( String buildDefinitionLabel )
160     {
161         this.buildDefinitionLabel = buildDefinitionLabel;
162     } //-- void setBuildDefinitionLabel( String )
163 
164     /**
165      * Set the hashCode field.
166      * 
167      * @param hashCode
168      */
169     public void setHashCode( int hashCode )
170     {
171         this.hashCode = hashCode;
172     } //-- void setHashCode( int )
173 
174     /**
175      * Set the projectGroupName field.
176      * 
177      * @param projectGroupName
178      */
179     public void setProjectGroupName( String projectGroupName )
180     {
181         this.projectGroupName = projectGroupName;
182     } //-- void setProjectGroupName( String )
183 
184     /**
185      * Set the projectId field.
186      * 
187      * @param projectId
188      */
189     public void setProjectId( int projectId )
190     {
191         this.projectId = projectId;
192     } //-- void setProjectId( int )
193 
194     /**
195      * Set the projectName field.
196      * 
197      * @param projectName
198      */
199     public void setProjectName( String projectName )
200     {
201         this.projectName = projectName;
202     } //-- void setProjectName( String )
203 
204 }