]> source.dussan.org Git - archiva.git/blob
f19b1baa90f044226c3ebaf891605ef4598ee120
[archiva.git] /
1 package org.apache.maven.repository.manager.web.action.admin;
2
3 /*
4  * Copyright 2005-2006 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 import com.opensymphony.xwork.ActionSupport;
20 import com.opensymphony.xwork.ModelDriven;
21 import com.opensymphony.xwork.Preparable;
22 import org.apache.maven.repository.configuration.Configuration;
23 import org.apache.maven.repository.configuration.ConfigurationStore;
24 import org.apache.maven.repository.configuration.ConfigurationStoreException;
25 import org.apache.maven.repository.indexing.RepositoryIndexException;
26 import org.apache.maven.repository.indexing.RepositoryIndexSearchException;
27
28 import java.net.MalformedURLException;
29
30 /**
31  * Configures the application.
32  *
33  * @plexus.component role="com.opensymphony.xwork.Action" role-hint="configureAction"
34  */
35 public class ConfigureAction
36     extends ActionSupport
37     implements ModelDriven, Preparable
38 {
39     /**
40      * @plexus.requirement
41      */
42     private ConfigurationStore configurationStore;
43
44     /**
45      * The configuration.
46      */
47     private Configuration configuration;
48
49     public String execute()
50         throws MalformedURLException, RepositoryIndexException, RepositoryIndexSearchException,
51         ConfigurationStoreException
52     {
53         // TODO! not yet implemented
54         return ERROR;
55     }
56
57     public String doInput()
58     {
59         return INPUT;
60     }
61
62     public Object getModel()
63     {
64         return configuration;
65     }
66
67     public void prepare()
68         throws Exception
69     {
70         configuration = configurationStore.getConfigurationFromStore();
71     }
72 }