1 54 55 package org.objectweb.jonas.ant; 56 57 58 59 import javax.xml.parsers.SAXParser ; 60 import org.apache.tools.ant.BuildException; 61 import org.apache.tools.ant.Task; 62 63 64 public interface EJBDeploymentTool { 65 72 void processDescriptor(String descriptorFilename, SAXParser saxParser) 73 throws BuildException; 74 75 79 void validateConfigured() throws BuildException; 80 81 84 void setTask(Task task); 85 86 89 void configure(EjbJar.Config config); 90 } 91 | Popular Tags |