1 package org.apache.maven.plugin.changes;
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 /**
23 * An action in a changes.xml file.
24 *
25 * @version $Id: Action.html 816584 2012-05-08 12:33:35Z hboutemy $
26 */
27 public class Action
28 {
29 private String action;
30
31 private String dev;
32
33 private String dueTo;
34
35 private String dueToEmail;
36
37 private String issue;
38
39 private String type;
40
41 public Action()
42 {
43 }
44
45 public void setAction( String action )
46 {
47 this.action = action;
48 }
49
50 public String getAction()
51 {
52 return action;
53 }
54
55 public void setDev( String dev )
56 {
57 this.dev = dev;
58 }
59
60 public String getDev()
61 {
62 return dev;
63 }
64
65 public void setDueTo( String dueTo )
66 {
67 this.dueTo = dueTo;
68 }
69
70 public String getDueTo()
71 {
72 return dueTo;
73 }
74
75 public void setDueToEmail( String dueToEmail )
76 {
77 this.dueToEmail = dueToEmail;
78 }
79
80 public String getDueToEmail()
81 {
82 return dueToEmail;
83 }
84
85 public void setIssue( String issue )
86 {
87 this.issue = issue;
88 }
89
90 public String getIssue()
91 {
92 return issue;
93 }
94
95 public void setType( String type )
96 {
97 this.type = type;
98 }
99
100 public String getType()
101 {
102 return type;
103 }
104 }