View Javadoc
1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.0.1 on 2016-10-29 20:36:58,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.plugins.changes.model;
9   
10  /**
11   * 
12   *         A fixed issue.
13   *       
14   * 
15   * @version $Revision$ $Date$
16   */
17  public class FixedIssue
18      implements java.io.Serializable
19  {
20  
21        //--------------------------/
22       //- Class/Member Variables -/
23      //--------------------------/
24  
25      /**
26       * 
27       *             
28       *               Id of the issue related to this change. This
29       * is the id in your issue tracking system.
30       *               <p>The Changes plugin will generate a URL out
31       * of this id. The URL is constructed using the value of the
32       * issueLinkTemplate parameter.</p>
33       *               <p>See the <a
34       * href="changes-report.html">changes-report mojo</a> for more
35       * details.</p>
36       *             
37       *           
38       */
39      private String issue;
40  
41  
42        //-----------/
43       //- Methods -/
44      //-----------/
45  
46      /**
47       * Get id of the issue related to this change. This is the id
48       * in your issue tracking system.
49       *               <p>The Changes plugin will generate a URL out
50       * of this id. The URL is constructed using the value of the
51       * issueLinkTemplate parameter.</p>
52       *               <p>See the <a
53       * href="changes-report.html">changes-report mojo</a> for more
54       * details.</p>
55       * 
56       * @return String
57       */
58      public String getIssue()
59      {
60          return this.issue;
61      } //-- String getIssue()
62  
63      /**
64       * Set id of the issue related to this change. This is the id
65       * in your issue tracking system.
66       *               <p>The Changes plugin will generate a URL out
67       * of this id. The URL is constructed using the value of the
68       * issueLinkTemplate parameter.</p>
69       *               <p>See the <a
70       * href="changes-report.html">changes-report mojo</a> for more
71       * details.</p>
72       * 
73       * @param issue
74       */
75      public void setIssue( String issue )
76      {
77          this.issue = issue;
78      } //-- void setIssue( String )
79  
80  
81  }