[jboss-cvs] JBossAS SVN: r62921 - trunk/tomcat/src/main/org/jboss/web/tomcat/service.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue May 8 19:56:26 EDT 2007


Author: thomas.diesler at jboss.com
Date: 2007-05-08 19:56:26 -0400 (Tue, 08 May 2007)
New Revision: 62921

Modified:
   trunk/tomcat/src/main/org/jboss/web/tomcat/service/TomcatInjectionContainer.java
Log:
Fix the build

Modified: trunk/tomcat/src/main/org/jboss/web/tomcat/service/TomcatInjectionContainer.java
===================================================================
--- trunk/tomcat/src/main/org/jboss/web/tomcat/service/TomcatInjectionContainer.java	2007-05-08 23:48:00 UTC (rev 62920)
+++ trunk/tomcat/src/main/org/jboss/web/tomcat/service/TomcatInjectionContainer.java	2007-05-08 23:56:26 UTC (rev 62921)
@@ -21,6 +21,8 @@
  */
 package org.jboss.web.tomcat.service;
 
+// $Id: $
+
 import java.io.IOException;
 import java.io.InputStream;
 import java.lang.annotation.Annotation;
@@ -35,7 +37,6 @@
 import java.util.List;
 import java.util.Map;
 
-import javax.management.MBeanServer;
 import javax.naming.Context;
 import javax.naming.InitialContext;
 import javax.naming.NameNotFoundException;
@@ -65,6 +66,7 @@
 import org.jboss.logging.Logger;
 import org.jboss.metamodel.descriptor.EnvironmentRefGroup;
 import org.jboss.metamodel.descriptor.Listener;
+import org.jboss.util.NotImplementedException;
 import org.jboss.virtual.VirtualFile;
 import org.jboss.web.WebApplication;
 import org.jboss.web.metamodel.descriptor.Filter;
@@ -135,8 +137,7 @@
    protected WebApplication appInfo;
    protected WebDD webDD;
 
-   public TomcatInjectionContainer(WebApplication appInfo, DeploymentUnit unit,
-         MainDeployer mainDeployer)
+   public TomcatInjectionContainer(WebApplication appInfo, DeploymentUnit unit, MainDeployer mainDeployer)
    {
       this.unit = unit;
       DeploymentScope deploymentScope = null;
@@ -470,4 +471,8 @@
       return dependencyPolicy;
    }
 
+   public String resolveMessageDestination(String link)
+   {
+      throw new NotImplementedException();
+   }
 }
\ No newline at end of file




More information about the jboss-cvs-commits mailing list