View Javadoc

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   * 
12   *         
13   *         The <code>&lt;exclusion&gt;</code> element contains
14   * informations required to exclude
15   *         an artifact to the project.
16   *         
17   *       
18   * 
19   * @version $Revision$ $Date$
20   */
21  public class Exclusion
22      implements java.io.Serializable
23  {
24  
25        //--------------------------/
26       //- Class/Member Variables -/
27      //--------------------------/
28  
29      /**
30       * The artifact ID of the project to exclude.
31       */
32      private String artifactId;
33  
34      /**
35       * The group ID of the project to exclude.
36       */
37      private String groupId;
38  
39  
40        //-----------/
41       //- Methods -/
42      //-----------/
43  
44      /**
45       * Get the artifact ID of the project to exclude.
46       * 
47       * @return String
48       */
49      public String getArtifactId()
50      {
51          return this.artifactId;
52      } //-- String getArtifactId()
53  
54      /**
55       * Get the group ID of the project to exclude.
56       * 
57       * @return String
58       */
59      public String getGroupId()
60      {
61          return this.groupId;
62      } //-- String getGroupId()
63  
64      /**
65       * Set the artifact ID of the project to exclude.
66       * 
67       * @param artifactId
68       */
69      public void setArtifactId( String artifactId )
70      {
71          this.artifactId = artifactId;
72      } //-- void setArtifactId( String )
73  
74      /**
75       * Set the group ID of the project to exclude.
76       * 
77       * @param groupId
78       */
79      public void setGroupId( String groupId )
80      {
81          this.groupId = groupId;
82      } //-- void setGroupId( String )
83  
84  
85  }