use of org.springframework.security.core.userdetails.jdbc.JdbcDaoImpl in project pentaho-platform by pentaho.
the class JdbcUserRoleListServiceTest method makePopulatedJdbcDao.
private JdbcDaoImpl makePopulatedJdbcDao() throws Exception {
JdbcDaoImpl dao = new JdbcDaoImpl();
dao.setDataSource(PopulatedDatabase.getDataSource());
dao.afterPropertiesSet();
return dao;
}
Aggregations