ammulder    2005/07/26 12:10:08

  Modified:    modules/openejb-builder/src/java/org/openejb/deployment
                        EJBConfigurer.java
  Log:

  Funny, OpenEJB doesn't seem particularly well suited to configure a WAR
  
  Revision  Changes    Path
  1.3       +2 -2      
openejb/modules/openejb-builder/src/java/org/openejb/deployment/EJBConfigurer.java
  
  Index: EJBConfigurer.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/openejb-builder/src/java/org/openejb/deployment/EJBConfigurer.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- EJBConfigurer.java        24 Jan 2005 21:16:49 -0000      1.2
  +++ EJBConfigurer.java        26 Jul 2005 16:10:08 -0000      1.3
  @@ -64,7 +64,7 @@
    */
   public class EJBConfigurer implements ModuleConfigurer {
       public DeploymentConfiguration createConfiguration(DeployableObject 
deployable) {
  -        if (ModuleType.WAR.equals(deployable.getType())) {
  +        if (ModuleType.EJB.equals(deployable.getType())) {
               return new EJBConfiguration(deployable);
           } else {
               return null;
  
  
  

Reply via email to