1 /*
2 =================== DO NOT EDIT THIS FILE ====================
3 Generated by Modello 1.0.1 on 2009-09-09 03:30:24,
4 any modifications will be overwritten.
5 ==============================================================
6 */
7
8 package org.apache.maven.model;
9
10 /**
11 * Information about the issue tracking (or bug tracking) system
12 * used to manage this
13 * project.
14 *
15 * @version $Revision$ $Date$
16 */
17 public class IssueManagement
18 implements java.io.Serializable
19 {
20
21 //--------------------------/
22 //- Class/Member Variables -/
23 //--------------------------/
24
25 /**
26 * The name of the issue management system, e.g. Bugzilla.
27 */
28 private String system;
29
30 /**
31 * URL for the issue management system used by the project.
32 */
33 private String url;
34
35
36 //-----------/
37 //- Methods -/
38 //-----------/
39
40 /**
41 * Get the name of the issue management system, e.g. Bugzilla.
42 *
43 * @return String
44 */
45 public String getSystem()
46 {
47 return this.system;
48 } //-- String getSystem()
49
50 /**
51 * Get uRL for the issue management system used by the project.
52 *
53 * @return String
54 */
55 public String getUrl()
56 {
57 return this.url;
58 } //-- String getUrl()
59
60 /**
61 * Set the name of the issue management system, e.g. Bugzilla.
62 *
63 * @param system
64 */
65 public void setSystem( String system )
66 {
67 this.system = system;
68 } //-- void setSystem( String )
69
70 /**
71 * Set uRL for the issue management system used by the project.
72 *
73 * @param url
74 */
75 public void setUrl( String url )
76 {
77 this.url = url;
78 } //-- void setUrl( String )
79
80
81 }