View Javadoc

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