Interface PanacheMongoRepositoryBase<Entity,​Id>

  • Type Parameters:
    Entity - The type of entity to operate on
    Id - The ID type of the entity
    All Known Subinterfaces:
    PanacheMongoRepository<Entity>

    public interface PanacheMongoRepositoryBase<Entity,​Id>
    Represents a Repository for a specific type of entity Entity, with an ID type of Id. Implementing this repository will gain you the exact same useful methods that are on PanacheMongoEntityBase. Unless you have a custom ID strategy, you should not implement this interface directly but implement PanacheMongoRepository instead.
    See Also:
    PanacheMongoRepository