All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.plugins.changes.model.DueTo Maven / Gradle / Ivy

Go to download

Creates a release history for inclusion into the site and assists in generating an announcement mail.

There is a newer version: 2.12.1
Show newest version
/*
 =================== DO NOT EDIT THIS FILE ====================
 Generated by Modello 1.0.1 on 2012-09-11 21:38:58,
 any modifications will be overwritten.
 ==============================================================
 */

package org.apache.maven.plugins.changes.model;

/**
 * 
 *         Name and Email of the person to be credited for this
 * change. This can be used when a patch is submitted by a
 * non-committer.
 *       
 * 
 * @version $Revision$ $Date$
 */
public class DueTo
    implements java.io.Serializable
{

      //--------------------------/
     //- Class/Member Variables -/
    //--------------------------/

    /**
     * Name of the person to be credited for this change.
     */
    private String name;

    /**
     * Email of the person to be credited for this change.
     */
    private String email;


      //-----------/
     //- Methods -/
    //-----------/

    /**
     * Get email of the person to be credited for this change.
     * 
     * @return String
     */
    public String getEmail()
    {
        return this.email;
    } //-- String getEmail()

    /**
     * Get name of the person to be credited for this change.
     * 
     * @return String
     */
    public String getName()
    {
        return this.name;
    } //-- String getName()

    /**
     * Set email of the person to be credited for this change.
     * 
     * @param email
     */
    public void setEmail( String email )
    {
        this.email = email;
    } //-- void setEmail( String )

    /**
     * Set name of the person to be credited for this change.
     * 
     * @param name
     */
    public void setName( String name )
    {
        this.name = name;
    } //-- void setName( String )


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy