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.continuum.buildagent.model;
9   
10  /**
11   * Class LocalRepository.
12   * 
13   * @version $Revision$ $Date$
14   */
15  @SuppressWarnings( "all" )
16  public class LocalRepository
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * Field name.
26       */
27      private String name;
28  
29      /**
30       * 
31       *             The file system location for this repository
32       *           .
33       */
34      private String location;
35  
36      /**
37       * 
38       *             The layout of the repository. Valid values are
39       * "default" and "legacy"
40       *           .
41       */
42      private String layout = "default";
43  
44  
45        //-----------/
46       //- Methods -/
47      //-----------/
48  
49      /**
50       * Get the layout of the repository. Valid values are "default"
51       * and "legacy".
52       * 
53       * @return String
54       */
55      public String getLayout()
56      {
57          return this.layout;
58      } //-- String getLayout()
59  
60      /**
61       * Get the file system location for this repository.
62       * 
63       * @return String
64       */
65      public String getLocation()
66      {
67          return this.location;
68      } //-- String getLocation()
69  
70      /**
71       * Get the name field.
72       * 
73       * @return String
74       */
75      public String getName()
76      {
77          return this.name;
78      } //-- String getName()
79  
80      /**
81       * Set the layout of the repository. Valid values are "default"
82       * and "legacy".
83       * 
84       * @param layout
85       */
86      public void setLayout( String layout )
87      {
88          this.layout = layout;
89      } //-- void setLayout( String )
90  
91      /**
92       * Set the file system location for this repository.
93       * 
94       * @param location
95       */
96      public void setLocation( String location )
97      {
98          this.location = location;
99      } //-- void setLocation( String )
100 
101     /**
102      * Set the name field.
103      * 
104      * @param name
105      */
106     public void setName( String name )
107     {
108         this.name = name;
109     } //-- void setName( String )
110 
111 }