]> source.dussan.org Git - archiva.git/blob
38940d9f983e7b3077129f3c0e703327be6b1b5b
[archiva.git] /
1 package org.apache.maven.repository.manager.web.job;\r
2 \r
3 import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout;\r
4 import org.apache.maven.artifact.repository.layout.DefaultRepositoryLayout;\r
5 import org.apache.maven.artifact.repository.layout.LegacyRepositoryLayout;\r
6 import org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable;\r
7 import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException;\r
8 \r
9 import java.util.Properties;\r
10 /*\r
11  * Copyright 2005-2006 The Apache Software Foundation.\r
12  *\r
13  * Licensed under the Apache License, Version 2.0 (the "License");\r
14  * you may not use this file except in compliance with the License.\r
15  * You may obtain a copy of the License at\r
16  *\r
17  *      http://www.apache.org/licenses/LICENSE-2.0\r
18  *\r
19  * Unless required by applicable law or agreed to in writing, software\r
20  * distributed under the License is distributed on an "AS IS" BASIS,\r
21  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
22  * See the License for the specific language governing permissions and\r
23  * limitations under the License.\r
24  */\r
25 \r
26 /**\r
27  *\r
28  */\r
29 public class Configuration\r
30     implements Initializable\r
31 {\r
32 \r
33     private Properties props;\r
34 \r
35     public void initialize()\r
36         throws InitializationException\r
37     {\r
38         System.out.println( "Configuration initialized" );\r
39     }\r
40 \r
41     public void setProperties( Properties properties )\r
42     {\r
43         this.props = properties;\r
44     }\r
45 \r
46     public Properties getProperties()\r
47     {\r
48         return props;\r
49     }\r
50 \r
51     public ArtifactRepositoryLayout getLayout()\r
52     {\r
53         ArtifactRepositoryLayout layout;\r
54         if ( "legacy".equals( props.getProperty( "layout" ) ) )\r
55         {\r
56             layout = new LegacyRepositoryLayout();\r
57         }\r
58         else\r
59         {\r
60             layout = new DefaultRepositoryLayout();\r
61         }\r
62         return layout;\r
63     }\r
64 \r
65     public String getIndexDirectory()\r
66     {\r
67         return props.getProperty( "index.path" );\r
68     }\r
69 \r
70     public String getRepositoryDirectory()\r
71     {\r
72         String repositoryDir = "";\r
73         if ( "default".equals( props.getProperty( "layout" ) ) )\r
74         {\r
75             repositoryDir = props.getProperty( "default.repository.dir" );\r
76         }\r
77         else if ( "legacy".equals( props.getProperty( "layout" ) ) )\r
78         {\r
79             repositoryDir = props.getProperty( "legacy.repository.dir" );\r
80         }\r
81         return repositoryDir;\r
82     }\r
83 }\r