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

org.apache.maven.plugins.changes.model.FixedIssue 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-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 ) }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy