[jboss-cvs] JBossAS SVN: r84866 - projects/jboss-osgi/trunk/runtime/deployer/src/main/java/org/jboss/osgi/deployer/helpers.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Feb 27 04:32:01 EST 2009


Author: alesj
Date: 2009-02-27 04:32:01 -0500 (Fri, 27 Feb 2009)
New Revision: 84866

Modified:
   projects/jboss-osgi/trunk/runtime/deployer/src/main/java/org/jboss/osgi/deployer/helpers/BundleDeploymentListener.java
Log:
Make the listener synched.

Modified: projects/jboss-osgi/trunk/runtime/deployer/src/main/java/org/jboss/osgi/deployer/helpers/BundleDeploymentListener.java
===================================================================
--- projects/jboss-osgi/trunk/runtime/deployer/src/main/java/org/jboss/osgi/deployer/helpers/BundleDeploymentListener.java	2009-02-27 07:02:51 UTC (rev 84865)
+++ projects/jboss-osgi/trunk/runtime/deployer/src/main/java/org/jboss/osgi/deployer/helpers/BundleDeploymentListener.java	2009-02-27 09:32:01 UTC (rev 84866)
@@ -21,15 +21,15 @@
  */
 package org.jboss.osgi.deployer.helpers;
 
-import org.osgi.framework.BundleListener;
 import org.jboss.deployers.structure.spi.DeploymentUnit;
+import org.osgi.framework.SynchronousBundleListener;
 
 /**
  * Bundle deployment listener.
  *
  * @author <a href="mailto:ales.justin at jboss.org">Ales Justin</a>
  */
-public interface BundleDeploymentListener extends BundleListener
+public interface BundleDeploymentListener extends SynchronousBundleListener
 {
    /**
     * Map deployment with the bundle.




More information about the jboss-cvs-commits mailing list