View Javadoc

1   package org.apache.continuum.model.release;
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  import java.util.List;
23  
24  public class ReleaseListenerSummary
25  {
26      private String goalName;
27  
28      private String error;
29  
30      private String username;
31  
32      private String inProgress;
33  
34      private int state;
35  
36      private List<String> phases;
37  
38      public String getGoalName()
39      {
40          return goalName;
41      }
42  
43      public void setGoalName( String goalName )
44      {
45          this.goalName = goalName;
46      }
47  
48      public String getError()
49      {
50          return error;
51      }
52  
53      public void setError( String error )
54      {
55          this.error = error;
56      }
57  
58      public String getUsername()
59      {
60          return username;
61      }
62  
63      public void setUsername( String username )
64      {
65          this.username = username;
66      }
67  
68      public String getInProgress()
69      {
70          return inProgress;
71      }
72  
73      public void setInProgress( String inProgress )
74      {
75          this.inProgress = inProgress;
76      }
77  
78      public int getState()
79      {
80          return state;
81      }
82  
83      public void setState( int state )
84      {
85          this.state = state;
86      }
87  
88      public List<String> getPhases()
89      {
90          return phases;
91      }
92  
93      public void setPhases( List<String> phases )
94      {
95          this.phases = phases;
96      }
97  
98      public List<String> getCompletedPhases()
99      {
100         return completedPhases;
101     }
102 
103     public void setCompletedPhases( List<String> completedPhases )
104     {
105         this.completedPhases = completedPhases;
106     }
107 
108     private List<String> completedPhases;
109 }