Interface ResourceMethodsImplementor

All Known Implementing Classes:
RepositoryMethodsImplementor

public interface ResourceMethodsImplementor
  • Method Summary

    Modifier and Type
    Method
    Description
    default io.quarkus.gizmo.ResultHandle
    getRepositoryInstance(io.quarkus.gizmo.BytecodeCreator creator, String repositoryInterface)
     
    void
    implementAdd(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
     
    void
    implementAddList(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
     
    void
    implementDelete(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
     
    void
    implementGet(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
     
    void
    implementIterable(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
     
    void
    implementList(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
     
    void
    implementListById(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
     
    void
    implementListPageCount(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
     
    void
    implementPagedList(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
     
    void
    implementUpdate(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface, String entityType)
     
  • Method Details

    • implementList

      void implementList(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
    • implementIterable

      void implementIterable(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
    • implementPagedList

      void implementPagedList(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
    • implementListPageCount

      void implementListPageCount(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
    • implementListById

      void implementListById(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
    • implementGet

      void implementGet(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
    • implementAdd

      void implementAdd(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
    • implementAddList

      void implementAddList(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
    • implementUpdate

      void implementUpdate(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface, String entityType)
    • implementDelete

      void implementDelete(io.quarkus.gizmo.ClassCreator classCreator, String repositoryInterface)
    • getRepositoryInstance

      default io.quarkus.gizmo.ResultHandle getRepositoryInstance(io.quarkus.gizmo.BytecodeCreator creator, String repositoryInterface)