statusPredicate.setOperator(PredicateOperator.EQUALS);
statusPredicate.setValues(new String[] {"ACTIVE"});
selector.setPredicates(new Predicate[] {placeHolderPredicate, statusPredicate});
FeedMappingPage page = feedMappingService.get(selector);
if (page != null && page.getEntries() != null && page.getEntries().length > 0) {
for (FeedMapping feedMapping : page.getEntries()) {
Long feedId = feedMapping.getFeedId();
Long textAttributeId = null;
Long urlAttributeId = null;
for (AttributeFieldMapping attributeMapping : feedMapping.getAttributeFieldMappings()) {
if (attributeMapping.getFieldId().intValue() == PLACEHOLDER_FIELD_SITELINK_LINK_TEXT) {