KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > geronimo > deployment > plugin > Application


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

36 public class Application implements J2eeApplicationObject JavaDoc {
37     private final DDBeanRoot JavaDoc root;
38
39     public Application(DDBeanRoot JavaDoc root) {
40         this.root = root;
41     }
42
43     public void addXpathListener(ModuleType JavaDoc type, String JavaDoc xpath, XpathListener JavaDoc xpl) {
44         throw new UnsupportedOperationException JavaDoc();
45     }
46
47     public Enumeration JavaDoc entries() {
48         throw new UnsupportedOperationException JavaDoc();
49     }
50
51     public DDBean JavaDoc[] getChildBean(ModuleType JavaDoc type, String JavaDoc xpath) {
52         throw new UnsupportedOperationException JavaDoc();
53     }
54
55     public DDBean JavaDoc[] getChildBean(String JavaDoc xpath) {
56         throw new UnsupportedOperationException JavaDoc();
57     }
58
59     public Class JavaDoc getClassFromScope(String JavaDoc className) {
60         throw new UnsupportedOperationException JavaDoc();
61     }
62
63     public DDBeanRoot JavaDoc getDDBeanRoot() {
64         return root;
65     }
66
67     public DDBeanRoot JavaDoc getDDBeanRoot(String JavaDoc filename) throws FileNotFoundException JavaDoc, DDBeanCreateException {
68         throw new UnsupportedOperationException JavaDoc();
69     }
70
71     public DeployableObject JavaDoc getDeployableObject(String JavaDoc uri) {
72         throw new UnsupportedOperationException JavaDoc();
73     }
74
75     public DeployableObject JavaDoc[] getDeployableObjects() {
76         throw new UnsupportedOperationException JavaDoc();
77     }
78
79     public DeployableObject JavaDoc[] getDeployableObjects(ModuleType JavaDoc type) {
80         throw new UnsupportedOperationException JavaDoc();
81     }
82
83     public InputStream JavaDoc getEntry(String JavaDoc name) {
84         throw new UnsupportedOperationException JavaDoc();
85     }
86
87     public String JavaDoc getModuleDTDVersion() {
88         throw new UnsupportedOperationException JavaDoc();
89     }
90
91     public String JavaDoc[] getModuleUris() {
92         throw new UnsupportedOperationException JavaDoc();
93     }
94
95     public String JavaDoc[] getModuleUris(ModuleType JavaDoc type) {
96         throw new UnsupportedOperationException JavaDoc();
97     }
98
99     public String JavaDoc[] getText(ModuleType JavaDoc type, String JavaDoc xpath) {
100         throw new UnsupportedOperationException JavaDoc();
101     }
102
103     public String JavaDoc[] getText(String JavaDoc xpath) {
104         throw new UnsupportedOperationException JavaDoc();
105     }
106
107     public ModuleType JavaDoc getType() {
108         return ModuleType.EAR;
109     }
110
111     public void removeXpathListener(ModuleType JavaDoc type, String JavaDoc xpath, XpathListener JavaDoc xpl) {
112         throw new UnsupportedOperationException JavaDoc();
113     }
114 }
115
Popular Tags