try {
entries = dao.getDirectChildren(SchemaConstants.userAttribute(username, attributename));
} catch (MissingParentException e) {
throw new UserNotFoundException();
} catch (NoSuchNodeException e) {
throw new NoSuchAttributeException();
}
TimebasedOrderFilter.sortById(entries);
return extractUserAttributeValues(entries);
}