]> source.dussan.org Git - archiva.git/blob
c682f81442c12b30605b7d366e534de4c53ef226
[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 org.apache.maven.model.Model;
23 import org.apache.maven.shared.app.company.CompanyPomHandler;
24 import org.apache.maven.shared.app.configuration.MavenAppConfiguration;
25
26 /**
27  * Stores the company information for displaying on the page.
28  *
29  * @plexus.component role="com.opensymphony.xwork.Action" role-hint="companyInfo"
30  */
31 public class CompanyInfoAction
32     extends AbstractAppearanceAction
33 {
34     private String companyLogo;
35
36     private String companyUrl;
37
38     private String companyName;
39
40     /**
41      * @plexus.requirement
42      */
43     private CompanyPomHandler handler;
44
45     /**
46      * @plexus.requirement
47      */
48     private MavenAppConfiguration appConfigurationStore;
49
50     public String execute()
51         throws Exception
52     {
53         Model model = handler.getCompanyPomModel( appConfigurationStore.getConfiguration().getCompanyPom(),
54                                                   createLocalRepository() );
55
56         if ( model != null )
57         {
58             if ( model.getOrganization() != null )
59             {
60                 companyName = model.getOrganization().getName();
61                 companyUrl = model.getOrganization().getUrl();
62             }
63
64             companyLogo = model.getProperties().getProperty( "organization.logo" );
65         }
66
67         return SUCCESS;
68     }
69
70     public String getCompanyLogo()
71     {
72         return companyLogo;
73     }
74
75     public String getCompanyUrl()
76     {
77         return companyUrl;
78     }
79
80     public String getCompanyName()
81     {
82         return companyName;
83     }
84 }