use of org.killbill.billing.util.dao.AuditLogModelDaoMapper in project killbill by killbill.
the class DBTestingHelper method getDBI.
@Override
public IDBI getDBI() {
final DBI dbi = (DBI) super.getDBI();
// Register KB specific mappers
if (initialized.compareAndSet(false, true)) {
dbi.registerMapper(new AuditLogModelDaoMapper());
dbi.registerMapper(new RecordIdIdMappingsMapper());
dbi.registerMapper(new LowerToCamelBeanMapperFactory(SessionModelDao.class));
}
return dbi;
}
Aggregations