String name = profile.getName();
if (id.length() > 0) {
if (name.length() == 0) {
name = id.toUpperCase();
}
allProfiles.add(new SelectItemComparable(id, name));
}
}
Collections.sort(allProfiles);
_allProfiles = allProfiles;
} catch (XPathExpressionException ex) {