All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.maven.archiva.configuration.WebappConfiguration Maven / Gradle / Ivy

/*
 * $Id$
 */

package org.apache.maven.archiva.configuration;

  //---------------------------------/
 //- Imported classes and packages -/
//---------------------------------/

import java.util.Date;

/**
 * 
 *         The webapp configuration settings.
 *       
 * 
 * @version $Revision$ $Date$
 */
public class WebappConfiguration implements java.io.Serializable {


      //--------------------------/
     //- Class/Member Variables -/
    //--------------------------/

    /**
     * Field ui
     */
    private UserInterfaceOptions ui;


      //-----------/
     //- Methods -/
    //-----------/

    /**
     * Get options for altering the ui presentation
     */
    public UserInterfaceOptions getUi()
    {
        return this.ui;
    } //-- UserInterfaceOptions getUi() 

    /**
     * Set options for altering the ui presentation
     * 
     * @param ui
     */
    public void setUi(UserInterfaceOptions ui)
    {
        this.ui = ui;
    } //-- void setUi(UserInterfaceOptions) 


    private String modelEncoding = "UTF-8";

    public void setModelEncoding( String modelEncoding )
    {
        this.modelEncoding = modelEncoding;
    }

    public String getModelEncoding()
    {
        return modelEncoding;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy