}
final Set<ProductAssociationLink> productAssociationLinks = productMarketing.getProductAssociationLinks();
if (Hibernate.isInitialized(productAssociationLinks) && productAssociationLinks != null) {
for (Iterator<ProductAssociationLink> iterator = productAssociationLinks.iterator(); iterator.hasNext();) {
final ProductAssociationLink productAssociationLink = (ProductAssociationLink) iterator.next();
if (productAssociationLink.getType().equals(ProductAssociationLinkType.CROSS_SELLING)) {
final ProductMarketing reloadedAssociatedProductMarketing = productService.getProductMarketingByCode(productAssociationLink.getProductSku().getProductMarketing().getCode());
productMarketingViewBean.getProductAssociationLinks().add(buildViewBeanProductAssociationLink(requestData, catalogCategory, reloadedAssociatedProductMarketing));
}
}
}