Interface HandlerFactory


public interface HandlerFactory
Creates Handler objects for methods annotated with a specific SQL method annotation, which satisfy the contract of that annotation.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    buildHandler(Class<?> sqlObjectType, Method method)
    Returns a Handler instance for executing the given SQL Object method.
  • Method Details

    • buildHandler

      Optional<Handler> buildHandler(Class<?> sqlObjectType, Method method)
      Returns a Handler instance for executing the given SQL Object method.
      Parameters:
      sqlObjectType - the SQL Object type
      method - the method
      Returns:
      a handler, if applicable