1 17 package org.apache.geronimo.j2ee.deployment; 18 19 import java.util.Map ; 20 import java.util.jar.JarFile ; 21 22 import org.apache.geronimo.common.DeploymentException; 23 import org.apache.geronimo.deployment.DeploymentContext; 24 import org.apache.geronimo.gbean.GBeanData; 25 import org.apache.geronimo.kernel.repository.Environment; 26 27 30 public interface WebServiceBuilder { 31 32 44 void findWebServices(JarFile moduleFile, boolean isEJB, Map correctedPortLocations, Environment environment, Map sharedContext) throws DeploymentException; 45 46 59 boolean configurePOJO(GBeanData targetGBean, String servletName, Module module, String seiClassName, DeploymentContext context) throws DeploymentException; 60 61 71 boolean configureEJB(GBeanData targetGBean, String ejbName, JarFile moduleFile, Map sharedContext, ClassLoader classLoader) throws DeploymentException; 72 73 } 74 | Popular Tags |