View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.1 on 2011-09-18 11:21:46,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.continuum.model.project;
9   
10    //---------------------------------/
11   //- Imported classes and packages -/
12  //---------------------------------/
13  
14  import org.apache.continuum.model.project.ProjectScmRoot;
15  import org.apache.continuum.model.release.ContinuumReleaseResult;
16  import org.apache.continuum.model.repository.AbstractPurgeConfiguration;
17  import org.apache.continuum.model.repository.DirectoryPurgeConfiguration;
18  import org.apache.continuum.model.repository.LocalRepository;
19  import org.apache.continuum.model.repository.RepositoryPurgeConfiguration;
20  import org.apache.maven.continuum.model.scm.ChangeFile;
21  import org.apache.maven.continuum.model.scm.ChangeSet;
22  import org.apache.maven.continuum.model.scm.ScmResult;
23  import org.apache.maven.continuum.model.system.Installation;
24  import org.apache.maven.continuum.model.system.NotificationAddress;
25  import org.apache.maven.continuum.model.system.Profile;
26  import org.apache.maven.continuum.model.system.SystemConfiguration;
27  import org.apache.maven.continuum.project.ContinuumProjectState;
28  
29  /**
30   * Class ProjectDependency.
31   * 
32   * @version $Revision$ $Date$
33   */
34  @SuppressWarnings( "all" )
35  public class ProjectDependency
36      implements java.io.Serializable
37  {
38  
39        //--------------------------/
40       //- Class/Member Variables -/
41      //--------------------------/
42  
43      /**
44       * Field groupId.
45       */
46      private String groupId;
47  
48      /**
49       * Field artifactId.
50       */
51      private String artifactId;
52  
53      /**
54       * Field version.
55       */
56      private String version;
57  
58  
59        //-----------/
60       //- Methods -/
61      //-----------/
62  
63      /**
64       * Get the artifactId field.
65       * 
66       * @return String
67       */
68      public String getArtifactId()
69      {
70          return this.artifactId;
71      } //-- String getArtifactId()
72  
73      /**
74       * Get the groupId field.
75       * 
76       * @return String
77       */
78      public String getGroupId()
79      {
80          return this.groupId;
81      } //-- String getGroupId()
82  
83      /**
84       * Get the version field.
85       * 
86       * @return String
87       */
88      public String getVersion()
89      {
90          return this.version;
91      } //-- String getVersion()
92  
93      /**
94       * Set the artifactId field.
95       * 
96       * @param artifactId
97       */
98      public void setArtifactId( String artifactId )
99      {
100         this.artifactId = artifactId;
101     } //-- void setArtifactId( String )
102 
103     /**
104      * Set the groupId field.
105      * 
106      * @param groupId
107      */
108     public void setGroupId( String groupId )
109     {
110         this.groupId = groupId;
111     } //-- void setGroupId( String )
112 
113     /**
114      * Set the version field.
115      * 
116      * @param version
117      */
118     public void setVersion( String version )
119     {
120         this.version = version;
121     } //-- void setVersion( String )
122 
123 }