Interface ConfigurableLifecycle

All Superinterfaces:
org.springframework.context.Lifecycle
All Known Subinterfaces:
CanUseSharedResource<T>, SharedResource<T>
All Known Implementing Classes:
AdapterManager, ConfigurableLifecyleBase, Configuration, ConfiguringLifecycleProcessor, HttpSender, HttpSenderBase, HttpSession, HttpSessionBase, MonitorManager, MultipartHttpSender, RestSender, ScheduleManager, WebServiceSender

public interface ConfigurableLifecycle extends org.springframework.context.Lifecycle
Interface for Spring beans that require their Lifecycle to be managed by Spring. See ConfiguringLifecycleProcessor
Author:
Niels
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Configure this component.

    Methods inherited from interface org.springframework.context.Lifecycle

    isRunning, start, stop
  • Method Details

    • configure

      void configure() throws ConfigurationException
      Configure this component.

      In the case of a container, this will propagate the start signal to all components that apply.

      Throws:
      ConfigurationException - in case it was not able to configure the component.