public List<Currency> getList(PageParam pageParam) {
String sql = "SELECT * FROM "+quoteTable("currency");
//sortedKeys="title", "code", "value", "date_modified"
QueryBean query = createPaginationQuery(sql, pageParam);
List<Currency> currencyList = getJdbcOperations().query(query.getSql(),
query.getParameters(), new CurrencyRowMapper());
//TODO: Do we need to update the cache here?
return currencyList;
}