Interface DescriptorCustomizer


public interface DescriptorCustomizer
Customize a ClassDescriptor when the customize(ClassDescriptor) method is called during the loading/population of the mappings. This is typically used to customize dynamically or specify configuration values not available through annotations or XML.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Customize the provided descriptor.
  • Method Details

    • customize

      void customize(ClassDescriptor descriptor) throws Exception
      Customize the provided descriptor. This method is called after the descriptor is populated from annotations/XML/defaults but before it is initialized.
      Throws:
      Exception