| ConnectionAdapter |
Adapter to abstract the Jdbc Connection Connection
representing a connection/session to a specific database (RDBMS or NoSQL).
|
| ConnectionFactory |
Responsible to open connections with a specific database,
could be a DataSource, DriverManager, SpringDataSource manager...
|
| Filter<T> |
Represents a filter to select the items.
|
| JdbcColumn<R> |
Represents a column (field) of database.
|
| JdbcColumnMapper |
|
| Queryable |
This class represent a query object to find the query to be performed and
your parameters like: query parameters, offset and max objects to return.
|
| Repository |
A repository holds the connections to data base server, allowing it to be queried through Queryable objects.
|
| ResultRow<T,R> |
Extract the result for each row from ResultSet.
|
| ResultSetParser<T,R> |
Responsible to extract ResultSet rows and create a list of POJO.
|