]> source.dussan.org Git - archiva.git/blob
c3feab958a9b1328b3ed4a6dddf4bec1a97d895b
[archiva.git] /
1 package org.apache.maven.archiva.web.action.admin.appearance;
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 import com.opensymphony.xwork2.Preparable;
23 import org.apache.archiva.admin.repository.admin.ArchivaAdministration;
24 import org.apache.archiva.admin.repository.admin.OrganisationInformation;
25 import org.apache.maven.archiva.web.action.AbstractActionSupport;
26
27 import javax.inject.Inject;
28
29 /**
30  * AbstractAppearanceAction
31  *
32  * @version $Id$
33  */
34 public abstract class AbstractAppearanceAction
35     extends AbstractActionSupport
36     implements Preparable
37 {
38
39     @Inject
40     protected ArchivaAdministration archivaAdministration;
41
42     private String organisationLogo;
43
44     private String organisationUrl;
45
46     private String organisationName;
47
48     public String getOrganisationLogo()
49     {
50         return organisationLogo;
51     }
52
53     public String getOrganisationName()
54     {
55         return organisationName;
56     }
57
58     public String getOrganisationUrl()
59     {
60         return organisationUrl;
61     }
62
63     public void setOrganisationLogo( String organisationLogo )
64     {
65         this.organisationLogo = organisationLogo;
66     }
67
68     public void setOrganisationName( String organisationName )
69     {
70         this.organisationName = organisationName;
71     }
72
73     public void setOrganisationUrl( String organisationUrl )
74     {
75         this.organisationUrl = organisationUrl;
76     }
77
78     public void prepare()
79         throws Exception
80     {
81
82         OrganisationInformation orgInfo = archivaAdministration.getOrganisationInformation();
83         if ( orgInfo != null )
84         {
85             setOrganisationLogo( orgInfo.getLogoLocation() );
86             setOrganisationName( orgInfo.getName() );
87             setOrganisationUrl( orgInfo.getUrl() );
88         }
89
90     }
91
92     public ArchivaAdministration getArchivaAdministration()
93     {
94         return archivaAdministration;
95     }
96
97     public void setArchivaAdministration( ArchivaAdministration archivaAdministration )
98     {
99         this.archivaAdministration = archivaAdministration;
100     }
101 }