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