Coverage Report - org.apache.maven.archiva.configuration.WebappConfiguration
 
Classes in this File Line Coverage Branch Coverage Complexity
WebappConfiguration
0%
0/4
N/A
1
 
 1  
 /*
 2  
  * $Id$
 3  
  */
 4  
 
 5  
 package org.apache.maven.archiva.configuration;
 6  
 
 7  
   //---------------------------------/
 8  
  //- Imported classes and packages -/
 9  
 //---------------------------------/
 10  
 
 11  
 import java.util.Date;
 12  
 
 13  
 /**
 14  
  * 
 15  
  *         The webapp configuration settings.
 16  
  *       
 17  
  * 
 18  
  * @version $Revision$ $Date$
 19  
  */
 20  0
 public class WebappConfiguration
 21  
     implements java.io.Serializable
 22  
 {
 23  
 
 24  
       //--------------------------/
 25  
      //- Class/Member Variables -/
 26  
     //--------------------------/
 27  
 
 28  
     /**
 29  
      * options for altering the ui presentation.
 30  
      */
 31  
     private UserInterfaceOptions ui;
 32  
 
 33  
 
 34  
       //-----------/
 35  
      //- Methods -/
 36  
     //-----------/
 37  
 
 38  
     /**
 39  
      * Get options for altering the ui presentation.
 40  
      * 
 41  
      * @return UserInterfaceOptions
 42  
      */
 43  
     public UserInterfaceOptions getUi()
 44  
     {
 45  0
         return this.ui;
 46  
     } //-- UserInterfaceOptions getUi()
 47  
 
 48  
     /**
 49  
      * Set options for altering the ui presentation.
 50  
      * 
 51  
      * @param ui
 52  
      */
 53  
     public void setUi( UserInterfaceOptions ui )
 54  
     {
 55  0
         this.ui = ui;
 56  0
     } //-- void setUi( UserInterfaceOptions )
 57  
 
 58  
 
 59  
 }