blob: f7093d6baa5a7d62e7676fa62ae1f023f0e07c70 [file] [log] [blame]
Alex Karasulu07d20492006-03-06 15:35:44 +00001/*
2 * Copyright 2006 The Apache Software Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 */
17package org.apache.felix.daemon;
18
19
20import java.io.File;
21import org.apache.directory.daemon.InstallationLayout;
22
23
24/**
25 * A felix specific installation layout.
26 *
Karl Paulsd312acc2007-06-18 20:38:33 +000027 * @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
Alex Karasulu07d20492006-03-06 15:35:44 +000028 */
29public class FelixLayout extends InstallationLayout
30{
31 public FelixLayout( InstallationLayout layout )
32 {
33 super( layout.getBaseDirectory() );
34 }
35
36
37 public FelixLayout( File baseDirectory )
38 {
39 super( baseDirectory );
40 }
41
42
43 public FelixLayout( String baseDirectoryPath )
44 {
45 super( baseDirectoryPath );
46 }
47
48
49 public File getBundleDirectory()
50 {
51 return new File( super.baseDirectory, "bundle" );
52 }
53
54
55 public File getConfigurationFile()
56 {
57 return super.getConfigurationFile( "config.properties" );
58 }
59
60
61 public File getSystemPropertiesFile()
62 {
63 return new File( super.baseDirectory, "system.properties" );
64 }
65}