1 18 19 package org.apache.tools.ant.taskdefs.optional.ejb; 20 21 22 23 import javax.xml.parsers.SAXParser ; 24 import org.apache.tools.ant.BuildException; 25 import org.apache.tools.ant.Task; 26 27 28 31 public interface EJBDeploymentTool { 32 40 void processDescriptor(String descriptorFilename, SAXParser saxParser) 41 throws BuildException; 42 43 47 void validateConfigured() throws BuildException; 48 49 53 void setTask(Task task); 54 55 59 void configure(EjbJar.Config config); 60 } 61 | Popular Tags |