Record Class AotRepositoryMethod

java.lang.Object
java.lang.Record
org.springframework.data.repository.aot.generate.AotRepositoryMethod

public record AotRepositoryMethod(String name, String signature, @Nullable QueryMetadata query, @Nullable org.springframework.data.repository.aot.generate.AotFragmentTarget fragment) extends Record
Value object capturing metadata about a repository method.
Since:
4.0
Author:
Mark Paluch
  • Constructor Details

    • AotRepositoryMethod

      public AotRepositoryMethod(String name, String signature, @Nullable QueryMetadata query, @Nullable org.springframework.data.repository.aot.generate.AotFragmentTarget fragment)
      Creates an instance of a AotRepositoryMethod record class.
      Parameters:
      name - the value for the name record component
      signature - the value for the signature record component
      query - the value for the query record component
      fragment - the value for the fragment record component
  • Method Details