1 17 18 package org.apache.geronimo.deployment.plugin; 19 20 import javax.enterprise.deploy.model.DDBeanRoot ; 21 import javax.enterprise.deploy.model.XpathListener ; 22 import javax.enterprise.deploy.model.DDBean ; 23 import javax.enterprise.deploy.model.DeployableObject ; 24 import javax.enterprise.deploy.shared.ModuleType ; 25 26 31 public class ApplicationRoot implements DDBeanRoot { 32 public void addXpathListener(String xpath, XpathListener xpl) { 33 throw new UnsupportedOperationException (); 34 } 35 36 public String [] getAttributeNames() { 37 throw new UnsupportedOperationException (); 38 } 39 40 public String getAttributeValue(String attrName) { 41 throw new UnsupportedOperationException (); 42 } 43 44 public DDBean [] getChildBean(String xpath) { 45 throw new UnsupportedOperationException (); 46 } 47 48 public String getDDBeanRootVersion() { 49 throw new UnsupportedOperationException (); 50 } 51 52 public DeployableObject getDeployableObject() { 53 throw new UnsupportedOperationException (); 54 } 55 56 public String getFilename() { 57 throw new UnsupportedOperationException (); 58 } 59 60 public String getId() { 61 throw new UnsupportedOperationException (); 62 } 63 64 public String getModuleDTDVersion() { 65 throw new UnsupportedOperationException (); 66 } 67 68 public DDBeanRoot getRoot() { 69 throw new UnsupportedOperationException (); 70 } 71 72 public String getText() { 73 throw new UnsupportedOperationException (); 74 } 75 76 public String [] getText(String xpath) { 77 throw new UnsupportedOperationException (); 78 } 79 80 public ModuleType getType() { 81 throw new UnsupportedOperationException (); 82 } 83 84 public String getXpath() { 85 throw new UnsupportedOperationException (); 86 } 87 88 public void removeXpathListener(String xpath, XpathListener xpl) { 89 throw new UnsupportedOperationException (); 90 } 91 } 92 | Popular Tags |