KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > geronimo > connector > deployment > MockRARDeployable


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
18 package org.apache.geronimo.connector.deployment;
19
20 import java.net.URL JavaDoc;
21 import java.io.FileNotFoundException JavaDoc;
22 import java.io.InputStream JavaDoc;
23 import java.util.Enumeration JavaDoc;
24
25 import javax.enterprise.deploy.model.DeployableObject JavaDoc;
26 import javax.enterprise.deploy.model.DDBeanRoot JavaDoc;
27 import javax.enterprise.deploy.model.DDBean JavaDoc;
28 import javax.enterprise.deploy.model.exceptions.DDBeanCreateException;
29 import javax.enterprise.deploy.shared.ModuleType JavaDoc;
30
31 import org.apache.geronimo.deployment.tools.DDBeanRootImpl;
32
33 /**
34  *
35  *
36  * @version $Rev: 476049 $ $Date: 2006-11-16 23:35:17 -0500 (Thu, 16 Nov 2006) $
37  *
38  * */

39 public class MockRARDeployable implements DeployableObject JavaDoc {
40
41         private DDBeanRoot JavaDoc root;
42
43         public MockRARDeployable(URL JavaDoc dd) throws DDBeanCreateException {
44             root = new DDBeanRootImpl(this, dd);
45         }
46
47         public ModuleType JavaDoc getType() {
48             return ModuleType.RAR;
49         }
50
51         public DDBeanRoot JavaDoc getDDBeanRoot() {
52             return root;
53         }
54
55         public DDBean JavaDoc[] getChildBean(String JavaDoc xpath) {
56             return root.getChildBean(xpath);
57         }
58
59         public String JavaDoc[] getText(String JavaDoc xpath) {
60             return root.getText(xpath);
61         }
62
63         public Class JavaDoc getClassFromScope(String JavaDoc className) {
64             return null;
65         }
66
67         public String JavaDoc getModuleDTDVersion() {
68             return null;
69         }
70
71         public DDBeanRoot JavaDoc getDDBeanRoot(String JavaDoc filename) throws FileNotFoundException JavaDoc, DDBeanCreateException {
72             return null;
73         }
74
75         public Enumeration JavaDoc entries() {
76             return null;
77         }
78
79         public InputStream JavaDoc getEntry(String JavaDoc name) {
80             return null;
81         }
82 }
83
Popular Tags