Package com.jada.content.data

Examples of com.jada.content.data.CategoryInfo


    if (sortBy == null) {
      sortBy = "";
    }
    ContentFilterBean contentFilterBeans[] = getContentFilterBeans(request);

    CategoryInfo categoryInfo = api.getCategory(catNaturalKey, topCatNaturalKey, pageSize, Constants.PAGE_NAV_COUNT, pageNum, sortBy, contentFilterBeans);
    return categoryInfo;
  }
View Full Code Here


 
  public CategoryInfo[] getCategoryTitles() throws Exception {
    String topCatNaturalKey = getCategoryParameter(request, 2);
    String catNaturalKey = getCategoryParameter(request, 3);
   
    CategoryInfo categoryInfos[] = api.getCategoryTitles(catNaturalKey, topCatNaturalKey);
    return categoryInfos;
  }
View Full Code Here

 
  public CategoryInfo[] getCategoryChildren() throws Exception {
    String topCatNaturalKey = getCategoryParameter(request, 2);
    String catNaturalKey = getCategoryParameter(request, 3);
   
    CategoryInfo categoryInfos[] = api.getCategoryChildren(catNaturalKey, topCatNaturalKey);
    return categoryInfos;
  }
View Full Code Here

TOP

Related Classes of com.jada.content.data.CategoryInfo

Copyright © 2018 www.massapicom. 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.