sql += " where (";
sql += " (contact_detail.contact_type_id=contact_type.contact_type_id)";
sql += " and (client_id = ?)";
sql += " ) ORDER BY contact_type";
return (List) queryRunner.query(sql, new Integer(clientID), rsh);
} catch (SQLException se) {
String message = "SpecificController: SQL Exception: " + se.getMessage();
log.warning(message);
throw new ControllerException(se); // wrap SQLException
}