Status Descriptions are bogus
Currently the descriptions are absent and so we are setting the code to be the description.
Can we fix this?
This is our impl of getEnrollmentStatusDescriptions:
CourseManagementServiceUCDImpl.java
@SuppressWarnings("unchecked")
public Map<String, String> getEnrollmentStatusDescriptions(Locale locale) {
//TODO: setup the NLS props on the connection based on locale?
List<String> statuses = getHibernateTemplate().findByNamedQuery("findEnrollmentStatusDescriptions");
//TODO: do we need human-readable descriptions here?
Map<String, String> rv = new HashMap(statuses.size());
for(Iterator i = statuses.iterator();i.hasNext();) {
String code = (String)i.next();
rv.put(code, code);
}
return rv;
}
, multiple selections available, Use left or right arrow keys to navigate selected items