This project has retired. For details please refer to its Attic page.
OrganisationInformation 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 organisation information settings.
11   *       
12   * 
13   * @version $Revision$ $Date$
14   */
15  @SuppressWarnings( "all" )
16  public class OrganisationInformation
17      implements java.io.Serializable
18  {
19  
20        //--------------------------/
21       //- Class/Member Variables -/
22      //--------------------------/
23  
24      /**
25       * name of the organisation.
26       */
27      private String name;
28  
29      /**
30       * name of the organisation.
31       */
32      private String url;
33  
34      /**
35       * name of the organisation.
36       */
37      private String logoLocation;
38  
39  
40        //-----------/
41       //- Methods -/
42      //-----------/
43  
44      /**
45       * Get name of the organisation.
46       * 
47       * @return String
48       */
49      public String getLogoLocation()
50      {
51          return this.logoLocation;
52      } //-- String getLogoLocation()
53  
54      /**
55       * Get name of the organisation.
56       * 
57       * @return String
58       */
59      public String getName()
60      {
61          return this.name;
62      } //-- String getName()
63  
64      /**
65       * Get name of the organisation.
66       * 
67       * @return String
68       */
69      public String getUrl()
70      {
71          return this.url;
72      } //-- String getUrl()
73  
74      /**
75       * Set name of the organisation.
76       * 
77       * @param logoLocation
78       */
79      public void setLogoLocation( String logoLocation )
80      {
81          this.logoLocation = logoLocation;
82      } //-- void setLogoLocation( String )
83  
84      /**
85       * Set name of the organisation.
86       * 
87       * @param name
88       */
89      public void setName( String name )
90      {
91          this.name = name;
92      } //-- void setName( String )
93  
94      /**
95       * Set name of the organisation.
96       * 
97       * @param url
98       */
99      public void setUrl( String url )
100     {
101         this.url = url;
102     } //-- void setUrl( String )
103 
104 }