View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 1.8.1,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.apache.maven.cli.internal.extension.model;
7   
8   /**
9    * Describes a build extension to utilise.
10   * 
11   * @version $Revision: 947930 $ $Date: 2015-04-16 19:18:15 +0000 (Thu, 16 Apr 2015) $
12   */
13  @SuppressWarnings( "all" )
14  public class CoreExtension
15      implements java.io.Serializable
16  {
17  
18        //--------------------------/
19       //- Class/Member Variables -/
20      //--------------------------/
21  
22      /**
23       * The group ID of the extension's artifact.
24       */
25      private String groupId;
26  
27      /**
28       * The artifact ID of the extension.
29       */
30      private String artifactId;
31  
32      /**
33       * The version of the extension.
34       */
35      private String version;
36  
37  
38        //-----------/
39       //- Methods -/
40      //-----------/
41  
42      /**
43       * Get the artifact ID of the extension.
44       * 
45       * @return String
46       */
47      public String getArtifactId()
48      {
49          return this.artifactId;
50      } //-- String getArtifactId()
51  
52      /**
53       * Get the group ID of the extension's artifact.
54       * 
55       * @return String
56       */
57      public String getGroupId()
58      {
59          return this.groupId;
60      } //-- String getGroupId()
61  
62      /**
63       * Get the version of the extension.
64       * 
65       * @return String
66       */
67      public String getVersion()
68      {
69          return this.version;
70      } //-- String getVersion()
71  
72      /**
73       * Set the artifact ID of the extension.
74       * 
75       * @param artifactId
76       */
77      public void setArtifactId( String artifactId )
78      {
79          this.artifactId = artifactId;
80      } //-- void setArtifactId( String )
81  
82      /**
83       * Set the group ID of the extension's artifact.
84       * 
85       * @param groupId
86       */
87      public void setGroupId( String groupId )
88      {
89          this.groupId = groupId;
90      } //-- void setGroupId( String )
91  
92      /**
93       * Set the version of the extension.
94       * 
95       * @param version
96       */
97      public void setVersion( String version )
98      {
99          this.version = version;
100     } //-- void setVersion( String )
101 
102 }