Class SimpleRepositoryMethodFindAllHandler

java.lang.Object
io.github.blyznytsiaorg.bibernate.dao.method.handler.SimpleRepositoryMethodFindAllHandler
All Implemented Interfaces:
SimpleRepositoryMethodHandler

public class SimpleRepositoryMethodFindAllHandler extends Object implements SimpleRepositoryMethodHandler
Handler for executing the findAll method in a simple repository. Implements the SimpleRepositoryMethodHandler interface.
Since:
1.0
Author:
Blyzhnytsia Team
  • Field Details

  • Constructor Details

    • SimpleRepositoryMethodFindAllHandler

      public SimpleRepositoryMethodFindAllHandler()
  • Method Details

    • isMethodHandle

      public boolean isMethodHandle(Method method)
      Checks if the given method is the findAll method.
      Specified by:
      isMethodHandle in interface SimpleRepositoryMethodHandler
      Parameters:
      method - The method to check.
      Returns:
      true if the method is findAll, false otherwise.
    • execute

      public Object execute(Method method, Object[] parameters, RepositoryDetails repositoryDetails, MethodMetadata methodMetadata)
      Executes the findAll method in the simple repository.
      Specified by:
      execute in interface SimpleRepositoryMethodHandler
      Parameters:
      method - The findAll method to execute.
      parameters - The parameters for the findAll method invocation.
      repositoryDetails - Details about the repository, including its name, primary key type, entity type, etc.
      methodMetadata - Metadata for the repository method, including its name, return type, and parameters.
      Returns:
      The result of the findAll method execution, a list of entities or an empty list if the return type is not supported.