Interface | Description |
---|---|
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.
|
Class | Description |
---|---|
Param |
Represents the parameter from
Queryable . |
QueryFactory | |
QueryFactory.Builder | |
RepositoryService | |
UnderscoreToCamelCaseMapper |
Convert string names from
underscore
to camel case java attribute style,
underscores or dashes which is skipped. |
Enum | Description |
---|---|
CallbackScope |
Enumeration for possible scope of execution from callback methods.
|
Exception | Description |
---|---|
UnsupportedDslOperationException |
Annotation Type | Description |
---|---|
PostCallBack |
Hook method to be invoked after execution of
Repository method. |
PreCallBack |
Copyright © 2012–2020 jkniv, copyleft code. All rights reserved.