You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by cu...@apache.org on 2010/12/29 00:20:03 UTC

svn commit: r1053476 - /incubator/aries/trunk/application/application-runtime-framework/src/main/java/org/apache/aries/application/runtime/framework/BundleFrameworkImpl.java

Author: cumminsh
Date: Tue Dec 28 23:20:03 2010
New Revision: 1053476

URL: http://svn.apache.org/viewvc?rev=1053476&view=rev
Log:
ARIES-518: Tweaks to composite bundle start sequence.

Modified:
    incubator/aries/trunk/application/application-runtime-framework/src/main/java/org/apache/aries/application/runtime/framework/BundleFrameworkImpl.java

Modified: incubator/aries/trunk/application/application-runtime-framework/src/main/java/org/apache/aries/application/runtime/framework/BundleFrameworkImpl.java
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/application/application-runtime-framework/src/main/java/org/apache/aries/application/runtime/framework/BundleFrameworkImpl.java?rev=1053476&r1=1053475&r2=1053476&view=diff
==============================================================================
--- incubator/aries/trunk/application/application-runtime-framework/src/main/java/org/apache/aries/application/runtime/framework/BundleFrameworkImpl.java (original)
+++ incubator/aries/trunk/application/application-runtime-framework/src/main/java/org/apache/aries/application/runtime/framework/BundleFrameworkImpl.java Tue Dec 28 23:20:03 2010
@@ -54,7 +54,7 @@ public class BundleFrameworkImpl impleme
   }
 
   @Override
-  public void init() throws BundleException
+  public void start() throws BundleException
   {
         _compositeBundle.start(Bundle.START_ACTIVATION_POLICY);
   if ( _packageAdminTracker == null)
@@ -67,7 +67,7 @@ public class BundleFrameworkImpl impleme
   }
   
   @Override
-  public void start() throws BundleException
+  public void init() throws BundleException
   {
     if (_compositeBundle.getCompositeFramework().getState() != Framework.ACTIVE)
     {