1 23 24 package javax.enterprise.deploy.model; 25 26 import javax.enterprise.deploy.shared.ModuleType ; 27 28 33 public interface J2eeApplicationObject extends DeployableObject { 34 35 41 public DeployableObject getDeployableObject(String uri); 42 43 49 public DeployableObject [] getDeployableObjects(ModuleType type); 50 51 56 public DeployableObject [] getDeployableObjects(); 57 58 64 public String [] getModuleUris(ModuleType type); 65 66 71 public String [] getModuleUris(); 72 73 82 public DDBean [] getChildBean(ModuleType type, String xpath); 83 84 94 public String [] getText(ModuleType type, String xpath); 95 96 104 public void addXpathListener(ModuleType type, String xpath, 105 XpathListener xpl); 106 107 114 public void removeXpathListener(ModuleType type, String xpath, 115 XpathListener xpl); 116 117 } 118 119 | Popular Tags |