Package com.agiletec.aps.util

Examples of com.agiletec.aps.util.ApsProperties.keys()


  }

  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);
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.