]> source.dussan.org Git - archiva.git/blob
77bd06d0d0cf5483408518ddc6a971dca70e6671
[archiva.git] /
1 package org.apache.archiva.admin.repository.admin;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 /**
22  * @author Olivier Lamy
23  * @since 1.4
24  */
25 public class OrganisationInformation
26 {
27     /**
28      * name of the organisation.
29      */
30     private String name;
31
32     /**
33      * name of the organisation.
34      */
35     private String url;
36
37     /**
38      * name of the organisation.
39      */
40     private String logoLocation;
41
42     public OrganisationInformation()
43     {
44         // no op
45     }
46
47     public OrganisationInformation( String name, String url, String logoLocation )
48     {
49         this.name = name;
50         this.url = url;
51         this.logoLocation = logoLocation;
52     }
53
54     public String getName()
55     {
56         return name;
57     }
58
59     public void setName( String name )
60     {
61         this.name = name;
62     }
63
64     public String getUrl()
65     {
66         return url;
67     }
68
69     public void setUrl( String url )
70     {
71         this.url = url;
72     }
73
74     public String getLogoLocation()
75     {
76         return logoLocation;
77     }
78
79     public void setLogoLocation( String logoLocation )
80     {
81         this.logoLocation = logoLocation;
82     }
83
84     @Override
85     public String toString()
86     {
87         final StringBuilder sb = new StringBuilder();
88         sb.append( "OrganisationInformation" );
89         sb.append( "{name='" ).append( name ).append( '\'' );
90         sb.append( ", url='" ).append( url ).append( '\'' );
91         sb.append( ", logoLocation='" ).append( logoLocation ).append( '\'' );
92         sb.append( '}' );
93         return sb.toString();
94     }
95 }