*
* @see com.odb.core.dao.ODBDAO#getViewConfigurationList()
*/
public List<ViewConfiguration> getViewConfigurationList() throws SQLException {
String sql = "SELECT * FROM ODB_VIEW_CONFIG WHERE IS_DESPLAYED=1";
List<ViewConfiguration> vcfgList = jdbcTemp.getJdbcOperations().query(sql, new ViewConfigurationRowMapper());
return vcfgList;
}