This project has retired. For details please refer to its Attic page.
Source code
001// =================== DO NOT EDIT THIS FILE ====================
002// Generated by Modello 1.7,
003// any modifications will be overwritten.
004// ==============================================================
005
006package org.apache.archiva.configuration;
007
008/**
009 * 
010 *         The webapp configuration settings.
011 *       
012 * 
013 * @version $Revision$ $Date$
014 */
015@SuppressWarnings( "all" )
016public class WebappConfiguration
017    implements java.io.Serializable
018{
019
020      //--------------------------/
021     //- Class/Member Variables -/
022    //--------------------------/
023
024    /**
025     * options for altering the ui presentation.
026     */
027    private UserInterfaceOptions ui;
028
029
030      //-----------/
031     //- Methods -/
032    //-----------/
033
034    /**
035     * Get options for altering the ui presentation.
036     * 
037     * @return UserInterfaceOptions
038     */
039    public UserInterfaceOptions getUi()
040    {
041        return this.ui;
042    } //-- UserInterfaceOptions getUi()
043
044    /**
045     * Set options for altering the ui presentation.
046     * 
047     * @param ui
048     */
049    public void setUi( UserInterfaceOptions ui )
050    {
051        this.ui = ui;
052    } //-- void setUi( UserInterfaceOptions )
053
054}