return productBrandViewBeans;
}
public List<RecentProductViewBean> buildListViewBeanRecentProduct(final RequestData requestData, final List<String> listProductSkuCodes, FetchPlan categoryVirtualFetchPlans, FetchPlan productMarketingFetchPlans, FetchPlan productSkuFetchPlans) throws Exception {
final List<RecentProductViewBean> recentProductViewBeans = new ArrayList<RecentProductViewBean>();
final Localization localization = requestData.getMarketAreaLocalization();
final String localeCode = localization.getCode();
for (String productSkuCode : listProductSkuCodes) {
RecentProductViewBean recentProductViewBean = new RecentProductViewBean();
final ProductSku reloadedProductSku = productService.getProductSkuByCode(productSkuCode, productSkuFetchPlans);
final ProductMarketing productMarketing = productService.getProductMarketingByCode(reloadedProductSku.getProductMarketing().getCode(), productMarketingFetchPlans);
final CatalogCategoryVirtual catalogCategory = catalogCategoryService.getDefaultVirtualCatalogCategoryByProductSkuId(reloadedProductSku.getId(), categoryVirtualFetchPlans);