This project has retired. For details please refer to its Attic page.
WebappConfiguration xref
View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 1.7,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.apache.archiva.configuration;
7   
8   /**
9    * 
10   *         The webapp configuration settings.
11   *       
12   * 
13   * @version $Revision$ $Date$
14   */
15  @SuppressWarnings( "all" )
16  public class WebappConfiguration
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * options for altering the ui presentation.
26       */
27      private UserInterfaceOptions ui;
28  
29  
30        //-----------/
31       //- Methods -/
32      //-----------/
33  
34      /**
35       * Get options for altering the ui presentation.
36       * 
37       * @return UserInterfaceOptions
38       */
39      public UserInterfaceOptions getUi()
40      {
41          return this.ui;
42      } //-- UserInterfaceOptions getUi()
43  
44      /**
45       * Set options for altering the ui presentation.
46       * 
47       * @param ui
48       */
49      public void setUi( UserInterfaceOptions ui )
50      {
51          this.ui = ui;
52      } //-- void setUi( UserInterfaceOptions )
53  
54  }