View Javadoc

1   package org.apache.continuum.model.project;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  public class ProjectRunSummary
23  {
24      private int projectId;
25  
26      private int buildDefinitionId;
27  
28      private int projectGroupId;
29  
30      private int projectScmRootId;
31  
32      private String buildAgentUrl;
33  
34      private int trigger;
35  
36      private String triggeredBy;
37  
38      public int getProjectId()
39      {
40          return projectId;
41      }
42  
43      public void setProjectId( int projectId )
44      {
45          this.projectId = projectId;
46      }
47  
48      public int getBuildDefinitionId()
49      {
50          return buildDefinitionId;
51      }
52  
53      public void setBuildDefinitionId( int buildDefinitionId )
54      {
55          this.buildDefinitionId = buildDefinitionId;
56      }
57  
58      public int getProjectGroupId()
59      {
60          return projectGroupId;
61      }
62  
63      public void setProjectGroupId( int projectGroupId )
64      {
65          this.projectGroupId = projectGroupId;
66      }
67  
68      public int getProjectScmRootId()
69      {
70          return projectScmRootId;
71      }
72  
73      public void setProjectScmRootId( int projectScmRootId )
74      {
75          this.projectScmRootId = projectScmRootId;
76      }
77  
78      public String getBuildAgentUrl()
79      {
80          return buildAgentUrl;
81      }
82  
83      public void setBuildAgentUrl( String buildAgentUrl )
84      {
85          this.buildAgentUrl = buildAgentUrl;
86      }
87  
88      public int getTrigger()
89      {
90          return trigger;
91      }
92  
93      public void setTrigger( int trigger )
94      {
95          this.trigger = trigger;
96      }
97  
98      public String getTriggeredBy()
99      {
100         return triggeredBy;
101     }
102 
103     public void setTriggeredBy( String triggeredBy )
104     {
105         this.triggeredBy = triggeredBy;
106     }
107 }