KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > servicemix > jbi > container > ServiceAssemblyEnvironment


1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */

17 package org.apache.servicemix.jbi.container;
18
19 import java.io.File JavaDoc;
20
21 import org.apache.servicemix.jbi.util.FileUtil;
22
23 public class ServiceAssemblyEnvironment {
24
25     private File JavaDoc rootDir;
26     private File JavaDoc installDir;
27     private File JavaDoc susDir;
28     private File JavaDoc stateFile;
29     
30     public ServiceAssemblyEnvironment() {
31     }
32
33     /**
34      * @return Returns the installRoot.
35      */

36     public File JavaDoc getInstallDir() {
37         return installDir;
38     }
39
40     /**
41      * @param installRoot The installRoot to set.
42      */

43     public void setInstallDir(File JavaDoc installRoot) {
44         this.installDir = installRoot;
45     }
46
47     /**
48      * @return Returns the susRoot.
49      */

50     public File JavaDoc getSusDir() {
51         return susDir;
52     }
53
54     /**
55      * @param susRoot The susRoot to set.
56      */

57     public void setSusDir(File JavaDoc susRoot) {
58         this.susDir = susRoot;
59     }
60
61     /**
62      * @return Returns the stateFile.
63      */

64     public File JavaDoc getStateFile() {
65         return stateFile;
66     }
67
68     /**
69      * @param stateFile The stateFile to set.
70      */

71     public void setStateFile(File JavaDoc stateFile) {
72         this.stateFile = stateFile;
73     }
74
75     /**
76      * @return Returns the rootDir.
77      */

78     public File JavaDoc getRootDir() {
79         return rootDir;
80     }
81
82     /**
83      * @param rootDir The rootDir to set.
84      */

85     public void setRootDir(File JavaDoc rootDir) {
86         this.rootDir = rootDir;
87     }
88
89     public File JavaDoc getServiceUnitDirectory(String JavaDoc componentName, String JavaDoc suName) {
90         File JavaDoc compDir = FileUtil.getDirectoryPath(susDir, componentName);
91         File JavaDoc suDir = FileUtil.getDirectoryPath(compDir, suName);
92         return suDir;
93     }
94
95 }
96
Popular Tags