Interface BootstrapConfigurator

    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      void init​(org.glassfish.jersey.internal.inject.InjectionManager injectionManager, BootstrapBag bootstrapBag)
      Pre-initialization method should only register services into InjectionManager and populate BootstrapBag.
      default void postInit​(org.glassfish.jersey.internal.inject.InjectionManager injectionManager, BootstrapBag bootstrapBag)
      Post-initialization method can get services from InjectionManager and is not able to register the new one because injection manager is already completed.
    • Method Detail

      • init

        void init​(org.glassfish.jersey.internal.inject.InjectionManager injectionManager,
                  BootstrapBag bootstrapBag)
        Pre-initialization method should only register services into InjectionManager and populate BootstrapBag.
        Parameters:
        injectionManager - not completed injection manager.
        bootstrapBag - bootstrap bag with services used in following processing.
      • postInit

        default void postInit​(org.glassfish.jersey.internal.inject.InjectionManager injectionManager,
                              BootstrapBag bootstrapBag)
        Post-initialization method can get services from InjectionManager and is not able to register the new one because injection manager is already completed.
        Parameters:
        injectionManager - already completed injection manager.
        bootstrapBag - bootstrap bag with services used in following processing.