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 organisation information settings.
011 *       
012 * 
013 * @version $Revision$ $Date$
014 */
015@SuppressWarnings( "all" )
016public class OrganisationInformation
017    implements java.io.Serializable
018{
019
020      //--------------------------/
021     //- Class/Member Variables -/
022    //--------------------------/
023
024    /**
025     * name of the organisation.
026     */
027    private String name;
028
029    /**
030     * name of the organisation.
031     */
032    private String url;
033
034    /**
035     * name of the organisation.
036     */
037    private String logoLocation;
038
039
040      //-----------/
041     //- Methods -/
042    //-----------/
043
044    /**
045     * Get name of the organisation.
046     * 
047     * @return String
048     */
049    public String getLogoLocation()
050    {
051        return this.logoLocation;
052    } //-- String getLogoLocation()
053
054    /**
055     * Get name of the organisation.
056     * 
057     * @return String
058     */
059    public String getName()
060    {
061        return this.name;
062    } //-- String getName()
063
064    /**
065     * Get name of the organisation.
066     * 
067     * @return String
068     */
069    public String getUrl()
070    {
071        return this.url;
072    } //-- String getUrl()
073
074    /**
075     * Set name of the organisation.
076     * 
077     * @param logoLocation
078     */
079    public void setLogoLocation( String logoLocation )
080    {
081        this.logoLocation = logoLocation;
082    } //-- void setLogoLocation( String )
083
084    /**
085     * Set name of the organisation.
086     * 
087     * @param name
088     */
089    public void setName( String name )
090    {
091        this.name = name;
092    } //-- void setName( String )
093
094    /**
095     * Set name of the organisation.
096     * 
097     * @param url
098     */
099    public void setUrl( String url )
100    {
101        this.url = url;
102    } //-- void setUrl( String )
103
104}