public interface CrudProvider
| Modifier and Type | Method and Description |
|---|---|
<T extends Entity> |
create(java.sql.Connection c,
UpdateContext<T> ctx) |
<T extends Entity> |
delete(java.sql.Connection c,
UpdateContext<T> ctx) |
<T extends Entity> |
readMany(QueryContext<T> ctx) |
<T extends Entity> |
readOne(QueryContext<T> ctx) |
<T extends Entity> |
update(java.sql.Connection c,
UpdateContext<T> ctx) |
<T extends Entity> void create(java.sql.Connection c, UpdateContext<T> ctx)
<T extends Entity> T readOne(QueryContext<T> ctx)
<T extends Entity> java.util.List<T> readMany(QueryContext<T> ctx)
<T extends Entity> void update(java.sql.Connection c, UpdateContext<T> ctx)
<T extends Entity> void delete(java.sql.Connection c, UpdateContext<T> ctx)
Copyright © 2024. All rights reserved.