Interface RepositoryInvocationInformation

All Known Subinterfaces:
RepositoryInvoker
All Known Implementing Classes:
QuerydslRepositoryInvokerAdapter

public interface RepositoryInvocationInformation
Meta-information about the methods a repository exposes.
Since:
1.10
Author:
Oliver Gierke
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns whether the repository has a method to delete objects.
    boolean
    Returns whether the repository has a method to find all objects.
    boolean
    Returns whether the repository has a method to find a single object.
    boolean
    Returns whether the repository has a method to save objects.
  • Method Details

    • hasSaveMethod

      boolean hasSaveMethod()
      Returns whether the repository has a method to save objects.
      Returns:
    • hasDeleteMethod

      boolean hasDeleteMethod()
      Returns whether the repository has a method to delete objects.
      Returns:
    • hasFindOneMethod

      boolean hasFindOneMethod()
      Returns whether the repository has a method to find a single object.
      Returns:
    • hasFindAllMethod

      boolean hasFindAllMethod()
      Returns whether the repository has a method to find all objects.
      Returns: