01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * 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: */package org.apache.geronimo.deployment.plugin;
17:
18: import javax.enterprise.deploy.model.DDBeanRoot;
19: import javax.enterprise.deploy.model.XpathListener;
20: import javax.enterprise.deploy.model.DDBean;
21: import javax.enterprise.deploy.model.DeployableObject;
22: import javax.enterprise.deploy.shared.ModuleType;
23:
24: /**
25: *
26: *
27: * @version $Rev: 476049 $ $Date: 2006-11-16 20:35:17 -0800 (Thu, 16 Nov 2006) $
28: */
29: public class ApplicationRoot implements DDBeanRoot {
30: public void addXpathListener(String xpath, XpathListener xpl) {
31: throw new UnsupportedOperationException();
32: }
33:
34: public String[] getAttributeNames() {
35: throw new UnsupportedOperationException();
36: }
37:
38: public String getAttributeValue(String attrName) {
39: throw new UnsupportedOperationException();
40: }
41:
42: public DDBean[] getChildBean(String xpath) {
43: throw new UnsupportedOperationException();
44: }
45:
46: public String getDDBeanRootVersion() {
47: throw new UnsupportedOperationException();
48: }
49:
50: public DeployableObject getDeployableObject() {
51: throw new UnsupportedOperationException();
52: }
53:
54: public String getFilename() {
55: throw new UnsupportedOperationException();
56: }
57:
58: public String getId() {
59: throw new UnsupportedOperationException();
60: }
61:
62: public String getModuleDTDVersion() {
63: throw new UnsupportedOperationException();
64: }
65:
66: public DDBeanRoot getRoot() {
67: throw new UnsupportedOperationException();
68: }
69:
70: public String getText() {
71: throw new UnsupportedOperationException();
72: }
73:
74: public String[] getText(String xpath) {
75: throw new UnsupportedOperationException();
76: }
77:
78: public ModuleType getType() {
79: throw new UnsupportedOperationException();
80: }
81:
82: public String getXpath() {
83: throw new UnsupportedOperationException();
84: }
85:
86: public void removeXpathListener(String xpath, XpathListener xpl) {
87: throw new UnsupportedOperationException();
88: }
89: }
|