org.springframework.osgi.context.event
Class OsgiBundleContextClosedEvent

java.lang.Object
  extended by java.util.EventObject
      extended by org.springframework.context.ApplicationEvent
          extended by org.springframework.context.event.ApplicationContextEvent
              extended by org.springframework.osgi.context.event.OsgiBundleApplicationContextEvent
                  extended by org.springframework.osgi.context.event.OsgiBundleContextClosedEvent
All Implemented Interfaces:
Serializable

public class OsgiBundleContextClosedEvent
extends OsgiBundleApplicationContextEvent

Event raised when an ApplicationContext#close() method executes inside an OSGi bundle.

Author:
Andy Piper
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
OsgiBundleContextClosedEvent(ApplicationContext source, Bundle bundle)
          Constructs a new OsgiBundleContextClosedEvent instance.
OsgiBundleContextClosedEvent(ApplicationContext source, Bundle bundle, Throwable cause)
          Constructs a new OsgiBundleContextClosedEvent instance.
 
Method Summary
 Throwable getFailureCause()
          Returns the Throwable that caused the application context closure to fail.
 
Methods inherited from class org.springframework.osgi.context.event.OsgiBundleApplicationContextEvent
getBundle
 
Methods inherited from class org.springframework.context.event.ApplicationContextEvent
getApplicationContext
 
Methods inherited from class org.springframework.context.ApplicationEvent
getTimestamp
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

OsgiBundleContextClosedEvent

public OsgiBundleContextClosedEvent(ApplicationContext source,
                                    Bundle bundle,
                                    Throwable cause)
Constructs a new OsgiBundleContextClosedEvent instance.

Parameters:
source - the ApplicationContext that has been closed (must not be null)
bundle - the OSGi bundle associated with the source application context
cause - optional Throwable indicating the cause of the failure

OsgiBundleContextClosedEvent

public OsgiBundleContextClosedEvent(ApplicationContext source,
                                    Bundle bundle)
Constructs a new OsgiBundleContextClosedEvent instance.

Parameters:
source - event source
bundle - associated OSGi bundle
Method Detail

getFailureCause

public final Throwable getFailureCause()
Returns the Throwable that caused the application context closure to fail.

Returns:
the cause of the failure.


Copyright © 2006-2009 Spring Framework. All Rights Reserved.