Interface PanacheStatelessEntityOperations<Completion,Confirmation>
- All Superinterfaces:
PanacheEntityMarker
- All Known Subinterfaces:
PanacheEntity.Reactive.Stateless,PanacheEntity.Stateless,PanacheStatelessBlockingEntity,PanacheStatelessReactiveEntity
- All Known Implementing Classes:
PanacheEntityMarker.PanacheStatelessBlockingEntityOperationsImpl,PanacheEntityMarker.PanacheStatelessReactiveEntityOperationsImpl
public interface PanacheStatelessEntityOperations<Completion,Confirmation>
extends PanacheEntityMarker
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.quarkus.hibernate.panache.PanacheEntityMarker
PanacheEntityMarker.PanacheManagedBlockingEntityOperationsImpl, PanacheEntityMarker.PanacheManagedReactiveEntityOperationsImpl, PanacheEntityMarker.PanacheStatelessBlockingEntityOperationsImpl, PanacheEntityMarker.PanacheStatelessReactiveEntityOperationsImpl -
Method Summary
Methods inherited from interface io.quarkus.hibernate.panache.PanacheEntityMarker
managedBlocking, managedReactive, statelessBlocking, statelessReactive
-
Method Details
-
insert
Completion insert()Insert this entity in the database. This will set your ID field if it is not already set. -
delete
Completion delete()Delete this entity from the database, if it is already persisted. -
update
Completion update()Update this entity to the database.
-