}
private void setContentCategories(Content content, ApsAggregatorItem apsAggregatorItem) {
ApsProperties categories = apsAggregatorItem.getCategories();
if (null != categories && categories.size() > 0) {
for (Enumeration e = categories.keys() ; e.hasMoreElements() ;) {
String categoryCode = (String) e.nextElement();
Category category = this.getCategoryManager().getCategory(categoryCode);
if (null != category && !content.getCategories().contains(category)) {
content.addCategory(category);
}