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: 3.0.0-M3
Show newest version
/*
 =================== DO NOT EDIT THIS FILE ====================
 Generated by Modello 1.0.1 on 2016-03-31 21:00:41,
 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 - 2025 Weber Informatics LLC | Privacy Policy