Interface IdStrategy.Factory

All Known Implementing Classes:
IncrementalIdStrategy.Factory
Enclosing class:
IdStrategy

public static interface IdStrategy.Factory
Responsible for instantiating custom IdStrategy impls.
  • Method Summary

    Modifier and Type
    Method
    Description
    Creates a new IdStrategy instance (impl).
    void
    Called after the method create() has been called.
  • Method Details

    • create

      IdStrategy create()
      Creates a new IdStrategy instance (impl).
    • postCreate

      void postCreate()
      Called after the method create() has been called. This is used to prevent classloader issues. RuntimeEnv's RuntimeEnv.ID_STRATEGY need to be set first.