org.apache.maven.plugins.changes.model.FixedIssue Maven / Gradle / Ivy
Show all versions of maven-changes-plugin Show documentation
/*
=================== DO NOT EDIT THIS FILE ====================
Generated by Modello 1.0.1 on 2012-05-10 17:26:02,
any modifications will be overwritten.
==============================================================
*/
package org.apache.maven.plugins.changes.model;
/**
*
* A fixed issue.
*
*
* @version $Revision$ $Date$
*/
public class FixedIssue
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
*
*
* Id of the issue related to this change.
* This is the id in your issue tracking system.
* The Changes plugin will generate a URL out
* of this id. The URL is constructed using the value of the
* issueLinkTemplate parameter.
* See the changes-report mojo for more
* details.
*
*
*/
private String issue;
//-----------/
//- Methods -/
//-----------/
/**
* Get Id of the issue related to this change. This is the
* id in your issue tracking system.
* The Changes plugin will generate a URL out
* of this id. The URL is constructed using the value of the
* issueLinkTemplate parameter.
* See the changes-report mojo for more
* details.
*
* @return String
*/
public String getIssue()
{
return this.issue;
} //-- String getIssue()
/**
* Set Id of the issue related to this change. This is the
* id in your issue tracking system.
* The Changes plugin will generate a URL out
* of this id. The URL is constructed using the value of the
* issueLinkTemplate parameter.
* See the changes-report mojo for more
* details.
*
* @param issue
*/
public void setIssue( String issue )
{
this.issue = issue;
} //-- void setIssue( String )
}