org.apache.maven.plugins.changes.model.DueTo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-changes-plugin Show documentation
Show all versions of maven-changes-plugin Show documentation
Creates a release history for inclusion into the site and assists in generating an announcement mail.
/*
=================== 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