View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.1 on 2011-09-18 11:22:15,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.continuum.web.model;
9   
10  /**
11   * Class PrepareBuildSummary.
12   * 
13   * @version $Revision$ $Date$
14   */
15  @SuppressWarnings( "all" )
16  public class PrepareBuildSummary
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * URL of the build agent.
26       */
27      private String buildAgentUrl;
28  
29      /**
30       * ID of the project group.
31       */
32      private int projectGroupId = 0;
33  
34      /**
35       * Name of the project group.
36       */
37      private String projectGroupName;
38  
39      /**
40       * Scm root address of projects.
41       */
42      private String scmRootAddress;
43  
44      /**
45       * ID of the scm root.
46       */
47      private int scmRootId = 0;
48  
49      /**
50       * Field hashCode.
51       */
52      private int hashCode = 0;
53  
54  
55        //-----------/
56       //- Methods -/
57      //-----------/
58  
59      /**
60       * Get uRL of the build agent.
61       * 
62       * @return String
63       */
64      public String getBuildAgentUrl()
65      {
66          return this.buildAgentUrl;
67      } //-- String getBuildAgentUrl()
68  
69      /**
70       * Get the hashCode field.
71       * 
72       * @return int
73       */
74      public int getHashCode()
75      {
76          return this.hashCode;
77      } //-- int getHashCode()
78  
79      /**
80       * Get iD of the project group.
81       * 
82       * @return int
83       */
84      public int getProjectGroupId()
85      {
86          return this.projectGroupId;
87      } //-- int getProjectGroupId()
88  
89      /**
90       * Get name of the project group.
91       * 
92       * @return String
93       */
94      public String getProjectGroupName()
95      {
96          return this.projectGroupName;
97      } //-- String getProjectGroupName()
98  
99      /**
100      * Get scm root address of projects.
101      * 
102      * @return String
103      */
104     public String getScmRootAddress()
105     {
106         return this.scmRootAddress;
107     } //-- String getScmRootAddress()
108 
109     /**
110      * Get iD of the scm root.
111      * 
112      * @return int
113      */
114     public int getScmRootId()
115     {
116         return this.scmRootId;
117     } //-- int getScmRootId()
118 
119     /**
120      * Set uRL of the build agent.
121      * 
122      * @param buildAgentUrl
123      */
124     public void setBuildAgentUrl( String buildAgentUrl )
125     {
126         this.buildAgentUrl = buildAgentUrl;
127     } //-- void setBuildAgentUrl( String )
128 
129     /**
130      * Set the hashCode field.
131      * 
132      * @param hashCode
133      */
134     public void setHashCode( int hashCode )
135     {
136         this.hashCode = hashCode;
137     } //-- void setHashCode( int )
138 
139     /**
140      * Set iD of the project group.
141      * 
142      * @param projectGroupId
143      */
144     public void setProjectGroupId( int projectGroupId )
145     {
146         this.projectGroupId = projectGroupId;
147     } //-- void setProjectGroupId( int )
148 
149     /**
150      * Set name of the project group.
151      * 
152      * @param projectGroupName
153      */
154     public void setProjectGroupName( String projectGroupName )
155     {
156         this.projectGroupName = projectGroupName;
157     } //-- void setProjectGroupName( String )
158 
159     /**
160      * Set scm root address of projects.
161      * 
162      * @param scmRootAddress
163      */
164     public void setScmRootAddress( String scmRootAddress )
165     {
166         this.scmRootAddress = scmRootAddress;
167     } //-- void setScmRootAddress( String )
168 
169     /**
170      * Set iD of the scm root.
171      * 
172      * @param scmRootId
173      */
174     public void setScmRootId( int scmRootId )
175     {
176         this.scmRootId = scmRootId;
177     } //-- void setScmRootId( int )
178 
179 }