1 22 package org.jboss.web.tomcat.tc6; 23 24 import org.jboss.ejb3.enc.DeploymentEjbResolver; 25 import org.jboss.ejb3.EJBContainer; 26 import org.jboss.ejb3.DeploymentScope; 27 28 import javax.naming.NameNotFoundException ; 29 30 36 public class WarEjbResolver extends DeploymentEjbResolver 37 { 38 public WarEjbResolver(DeploymentScope deploymentScope, String errorName) 39 { 40 super(deploymentScope, errorName); 41 } 42 43 protected EJBContainer searchDeploymentInternally(String ejbLink, Class businessIntf) 44 { 45 return null; 46 } 47 48 protected EJBContainer searchForEjbContainerInternally(Class businessIntf) throws NameNotFoundException 49 { 50 return null; 51 } 52 } 53 | Popular Tags |