1 /*
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18 =================== DO NOT EDIT THIS FILE ====================
19 Generated by Modello 2.4.0,
20 any modifications will be overwritten.
21 ==============================================================
22 */
23
24 package org.apache.maven.plugins.changes.model;
25
26 /**
27 *
28 * Name and email of the person to be credited for this
29 * change. This can be used when a patch is submitted by a
30 * non-committer.
31 *
32 *
33 * @version $Revision$ $Date$
34 */
35 @SuppressWarnings( "all" )
36 public class DueTo
37 implements java.io.Serializable
38 {
39
40 //--------------------------/
41 //- Class/Member Variables -/
42 //--------------------------/
43
44 /**
45 * Name of the person to be credited for this change.
46 */
47 private String name;
48
49 /**
50 * Email of the person to be credited for this change.
51 */
52 private String email;
53
54
55 //-----------/
56 //- Methods -/
57 //-----------/
58
59 /**
60 * Get email of the person to be credited for this change.
61 *
62 * @return String
63 */
64 public String getEmail()
65 {
66 return this.email;
67 } //-- String getEmail()
68
69 /**
70 * Get name of the person to be credited for this change.
71 *
72 * @return String
73 */
74 public String getName()
75 {
76 return this.name;
77 } //-- String getName()
78
79 /**
80 * Set email of the person to be credited for this change.
81 *
82 * @param email a email object.
83 */
84 public void setEmail( String email )
85 {
86 this.email = email;
87 } //-- void setEmail( String )
88
89 /**
90 * Set name of the person to be credited for this change.
91 *
92 * @param name a name object.
93 */
94 public void setName( String name )
95 {
96 this.name = name;
97 } //-- void setName( String )
98
99 }