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 DistributedReleaseSummary.
12   * 
13   * @version $Revision$ $Date$
14   */
15  @SuppressWarnings( "all" )
16  public class DistributedReleaseSummary
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * Field releaseId.
26       */
27      private String releaseId;
28  
29      /**
30       * Field releaseGoal.
31       */
32      private String releaseGoal;
33  
34      /**
35       * Field buildAgentUrl.
36       */
37      private String buildAgentUrl;
38  
39      /**
40       * Field projectId.
41       */
42      private int projectId = 0;
43  
44  
45        //-----------/
46       //- Methods -/
47      //-----------/
48  
49      /**
50       * Get the buildAgentUrl field.
51       * 
52       * @return String
53       */
54      public String getBuildAgentUrl()
55      {
56          return this.buildAgentUrl;
57      } //-- String getBuildAgentUrl()
58  
59      /**
60       * Get the projectId field.
61       * 
62       * @return int
63       */
64      public int getProjectId()
65      {
66          return this.projectId;
67      } //-- int getProjectId()
68  
69      /**
70       * Get the releaseGoal field.
71       * 
72       * @return String
73       */
74      public String getReleaseGoal()
75      {
76          return this.releaseGoal;
77      } //-- String getReleaseGoal()
78  
79      /**
80       * Get the releaseId field.
81       * 
82       * @return String
83       */
84      public String getReleaseId()
85      {
86          return this.releaseId;
87      } //-- String getReleaseId()
88  
89      /**
90       * Set the buildAgentUrl field.
91       * 
92       * @param buildAgentUrl
93       */
94      public void setBuildAgentUrl( String buildAgentUrl )
95      {
96          this.buildAgentUrl = buildAgentUrl;
97      } //-- void setBuildAgentUrl( String )
98  
99      /**
100      * Set the projectId field.
101      * 
102      * @param projectId
103      */
104     public void setProjectId( int projectId )
105     {
106         this.projectId = projectId;
107     } //-- void setProjectId( int )
108 
109     /**
110      * Set the releaseGoal field.
111      * 
112      * @param releaseGoal
113      */
114     public void setReleaseGoal( String releaseGoal )
115     {
116         this.releaseGoal = releaseGoal;
117     } //-- void setReleaseGoal( String )
118 
119     /**
120      * Set the releaseId field.
121      * 
122      * @param releaseId
123      */
124     public void setReleaseId( String releaseId )
125     {
126         this.releaseId = releaseId;
127     } //-- void setReleaseId( String )
128 
129 }