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 ProjectBuildsSummary.
12   * 
13   * @version $Revision$ $Date$
14   */
15  @SuppressWarnings( "all" )
16  public class ProjectBuildsSummary
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * Field projectGroupName.
26       */
27      private String projectGroupName;
28  
29      /**
30       * Field projectName.
31       */
32      private String projectName;
33  
34      /**
35       * Field buildDate.
36       */
37      private long buildDate = 0L;
38  
39      /**
40       * Field buildState.
41       */
42      private int buildState = 0;
43  
44      /**
45       * Field buildTriggeredBy.
46       */
47      private String buildTriggeredBy;
48  
49  
50        //-----------/
51       //- Methods -/
52      //-----------/
53  
54      /**
55       * Get the buildDate field.
56       * 
57       * @return long
58       */
59      public long getBuildDate()
60      {
61          return this.buildDate;
62      } //-- long getBuildDate()
63  
64      /**
65       * Get the buildState field.
66       * 
67       * @return int
68       */
69      public int getBuildState()
70      {
71          return this.buildState;
72      } //-- int getBuildState()
73  
74      /**
75       * Get the buildTriggeredBy field.
76       * 
77       * @return String
78       */
79      public String getBuildTriggeredBy()
80      {
81          return this.buildTriggeredBy;
82      } //-- String getBuildTriggeredBy()
83  
84      /**
85       * Get the projectGroupName field.
86       * 
87       * @return String
88       */
89      public String getProjectGroupName()
90      {
91          return this.projectGroupName;
92      } //-- String getProjectGroupName()
93  
94      /**
95       * Get the projectName field.
96       * 
97       * @return String
98       */
99      public String getProjectName()
100     {
101         return this.projectName;
102     } //-- String getProjectName()
103 
104     /**
105      * Set the buildDate field.
106      * 
107      * @param buildDate
108      */
109     public void setBuildDate( long buildDate )
110     {
111         this.buildDate = buildDate;
112     } //-- void setBuildDate( long )
113 
114     /**
115      * Set the buildState field.
116      * 
117      * @param buildState
118      */
119     public void setBuildState( int buildState )
120     {
121         this.buildState = buildState;
122     } //-- void setBuildState( int )
123 
124     /**
125      * Set the buildTriggeredBy field.
126      * 
127      * @param buildTriggeredBy
128      */
129     public void setBuildTriggeredBy( String buildTriggeredBy )
130     {
131         this.buildTriggeredBy = buildTriggeredBy;
132     } //-- void setBuildTriggeredBy( String )
133 
134     /**
135      * Set the projectGroupName field.
136      * 
137      * @param projectGroupName
138      */
139     public void setProjectGroupName( String projectGroupName )
140     {
141         this.projectGroupName = projectGroupName;
142     } //-- void setProjectGroupName( String )
143 
144     /**
145      * Set the projectName field.
146      * 
147      * @param projectName
148      */
149     public void setProjectName( String projectName )
150     {
151         this.projectName = projectName;
152     } //-- void setProjectName( String )
153 
154 }