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

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

/*
 =================== DO NOT EDIT THIS FILE ====================
 Generated by Modello 1.0.1 on 2016-10-29 20:31:54,
 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