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.configuration.model;
9   
10  /**
11   * Class BuildAgentConfiguration.
12   * 
13   * @version $Revision$ $Date$
14   */
15  @SuppressWarnings( "all" )
16  public class BuildAgentConfiguration
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * Field url.
26       */
27      private String url;
28  
29      /**
30       * Field description.
31       */
32      private String description;
33  
34      /**
35       * Field enabled.
36       */
37      private boolean enabled = false;
38  
39  
40        //-----------/
41       //- Methods -/
42      //-----------/
43  
44      /**
45       * Get the description field.
46       * 
47       * @return String
48       */
49      public String getDescription()
50      {
51          return this.description;
52      } //-- String getDescription()
53  
54      /**
55       * Get the url field.
56       * 
57       * @return String
58       */
59      public String getUrl()
60      {
61          return this.url;
62      } //-- String getUrl()
63  
64      /**
65       * Get the enabled field.
66       * 
67       * @return boolean
68       */
69      public boolean isEnabled()
70      {
71          return this.enabled;
72      } //-- boolean isEnabled()
73  
74      /**
75       * Set the description field.
76       * 
77       * @param description
78       */
79      public void setDescription( String description )
80      {
81          this.description = description;
82      } //-- void setDescription( String )
83  
84      /**
85       * Set the enabled field.
86       * 
87       * @param enabled
88       */
89      public void setEnabled( boolean enabled )
90      {
91          this.enabled = enabled;
92      } //-- void setEnabled( boolean )
93  
94      /**
95       * Set the url field.
96       * 
97       * @param url
98       */
99      public void setUrl( String url )
100     {
101         this.url = url;
102     } //-- void setUrl( String )
103 
104 }