Interface LifeCycleMethod

All Known Implementing Classes:
ReflectLifeCycleMethod, RunnableLifeCycleMethod

public interface LifeCycleMethod
Represents a lifecycle method.
  • Method Summary

    Modifier and Type
    Method
    Description
    Class<?>[]
    The services that should be called after this method.
    Class<?>[]
    The services that should be called before this method.
    The service that this method is associated with.
  • Method Details

    • service

      Class<?> service()
      The service that this method is associated with.
      Returns:
      The service
    • before

      Class<?>[] before()
      The services that should be called before this method.
      Returns:
      The method
    • after

      Class<?>[] after()
      The services that should be called after this method.
      Returns:
      The method