View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.1 on 2011-09-18 11:22:14,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.continuum.xmlrpc.repository;
9   
10    //---------------------------------/
11   //- Imported classes and packages -/
12  //---------------------------------/
13  
14  import org.apache.continuum.xmlrpc.release.ContinuumReleaseResult;
15  import org.apache.maven.continuum.xmlrpc.project.AddingResult;
16  import org.apache.maven.continuum.xmlrpc.project.BuildDefinition;
17  import org.apache.maven.continuum.xmlrpc.project.BuildDefinitionTemplate;
18  import org.apache.maven.continuum.xmlrpc.project.BuildProjectTask;
19  import org.apache.maven.continuum.xmlrpc.project.BuildResult;
20  import org.apache.maven.continuum.xmlrpc.project.BuildResultSummary;
21  import org.apache.maven.continuum.xmlrpc.project.ContinuumProjectState;
22  import org.apache.maven.continuum.xmlrpc.project.Project;
23  import org.apache.maven.continuum.xmlrpc.project.ProjectDependency;
24  import org.apache.maven.continuum.xmlrpc.project.ProjectDeveloper;
25  import org.apache.maven.continuum.xmlrpc.project.ProjectGroup;
26  import org.apache.maven.continuum.xmlrpc.project.ProjectGroupSummary;
27  import org.apache.maven.continuum.xmlrpc.project.ProjectNotifier;
28  import org.apache.maven.continuum.xmlrpc.project.ProjectSummary;
29  import org.apache.maven.continuum.xmlrpc.project.Schedule;
30  import org.apache.maven.continuum.xmlrpc.scm.ChangeFile;
31  import org.apache.maven.continuum.xmlrpc.scm.ChangeSet;
32  import org.apache.maven.continuum.xmlrpc.scm.ScmResult;
33  import org.apache.maven.continuum.xmlrpc.system.Installation;
34  import org.apache.maven.continuum.xmlrpc.system.Profile;
35  import org.apache.maven.continuum.xmlrpc.system.SystemConfiguration;
36  
37  /**
38   * Class DirectoryPurgeConfiguration.
39   * 
40   * @version $Revision$ $Date$
41   */
42  @SuppressWarnings( "all" )
43  public class DirectoryPurgeConfiguration
44      extends AbstractPurgeConfiguration
45      implements java.io.Serializable
46  {
47  
48        //--------------------------/
49       //- Class/Member Variables -/
50      //--------------------------/
51  
52      /**
53       * 
54       *             The file system path for this directory
55       *           .
56       */
57      private String location;
58  
59      /**
60       * 
61       *             The type of directory. Valid values are
62       * "releases" and "buildOutput"
63       *           .
64       */
65      private String directoryType;
66  
67  
68        //-----------/
69       //- Methods -/
70      //-----------/
71  
72      /**
73       * Get the type of directory. Valid values are "releases" and
74       * "buildOutput".
75       * 
76       * @return String
77       */
78      public String getDirectoryType()
79      {
80          return this.directoryType;
81      } //-- String getDirectoryType()
82  
83      /**
84       * Get the file system path for this directory.
85       * 
86       * @return String
87       */
88      public String getLocation()
89      {
90          return this.location;
91      } //-- String getLocation()
92  
93      /**
94       * Set the type of directory. Valid values are "releases" and
95       * "buildOutput".
96       * 
97       * @param directoryType
98       */
99      public void setDirectoryType( String directoryType )
100     {
101         this.directoryType = directoryType;
102     } //-- void setDirectoryType( String )
103 
104     /**
105      * Set the file system path for this directory.
106      * 
107      * @param location
108      */
109     public void setLocation( String location )
110     {
111         this.location = location;
112     } //-- void setLocation( String )
113 
114 }