This project has retired. For details please refer to its Attic page.
OrganisationInformation xref
View Javadoc
1   package org.apache.archiva.configuration;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  /**
23   * 
24   *         The organisation information settings.
25   *       
26   * 
27   * @version $Revision$ $Date$
28   */
29  @SuppressWarnings( "all" )
30  public class OrganisationInformation
31      implements java.io.Serializable
32  {
33  
34        //--------------------------/
35       //- Class/Member Variables -/
36      //--------------------------/
37  
38      /**
39       * name of the organisation.
40       */
41      private String name;
42  
43      /**
44       * name of the organisation.
45       */
46      private String url;
47  
48      /**
49       * name of the organisation.
50       */
51      private String logoLocation;
52  
53  
54        //-----------/
55       //- Methods -/
56      //-----------/
57  
58      /**
59       * Get name of the organisation.
60       * 
61       * @return String
62       */
63      public String getLogoLocation()
64      {
65          return this.logoLocation;
66      } //-- String getLogoLocation()
67  
68      /**
69       * Get name of the organisation.
70       * 
71       * @return String
72       */
73      public String getName()
74      {
75          return this.name;
76      } //-- String getName()
77  
78      /**
79       * Get name of the organisation.
80       * 
81       * @return String
82       */
83      public String getUrl()
84      {
85          return this.url;
86      } //-- String getUrl()
87  
88      /**
89       * Set name of the organisation.
90       * 
91       * @param logoLocation
92       */
93      public void setLogoLocation( String logoLocation )
94      {
95          this.logoLocation = logoLocation;
96      } //-- void setLogoLocation( String )
97  
98      /**
99       * Set name of the organisation.
100      * 
101      * @param name
102      */
103     public void setName( String name )
104     {
105         this.name = name;
106     } //-- void setName( String )
107 
108     /**
109      * Set name of the organisation.
110      * 
111      * @param url
112      */
113     public void setUrl( String url )
114     {
115         this.url = url;
116     } //-- void setUrl( String )
117 
118 }