1 23 24 package javax.enterprise.deploy.model; 25 26 import javax.enterprise.deploy.shared.ModuleType ; 27 import java.util.Enumeration ; 28 import java.io.InputStream ; 29 import java.io.IOException ; 30 31 40 public interface DeployableObject 41 { 42 43 50 public ModuleType getType(); 51 52 59 public DDBeanRoot getDDBeanRoot(); 60 61 70 public DDBean [] getChildBean(String xpath); 71 72 80 public String [] getText(String xpath); 81 82 96 public Class getClassFromScope(String className); 97 98 144 public String getModuleDTDVersion(); 145 146 157 public DDBeanRoot getDDBeanRoot(String filename) throws 158 java.io.FileNotFoundException , 159 javax.enterprise.deploy.model.exceptions.DDBeanCreateException; 160 161 168 public Enumeration entries(); 169 170 178 public InputStream getEntry(String name); 179 } 180 181 | Popular Tags |