* @return A {@link FeedItemOperation} for adding the feed item.
*/
private static FeedItemOperation newSiteLinkFeedItemAddOperation(
SiteLinksFeed siteLinksFeed, String text, String url) {
// Create the FeedItemAttributeValues for our text values.
FeedItemAttributeValue linkTextAttributeValue = new FeedItemAttributeValue();
linkTextAttributeValue.setFeedAttributeId(siteLinksFeed.linkTextFeedAttributeId);
linkTextAttributeValue.setStringValue(text);
FeedItemAttributeValue linkUrlAttributeValue = new FeedItemAttributeValue();
linkUrlAttributeValue.setFeedAttributeId(siteLinksFeed.linkUrlFeedAttributeId);
linkUrlAttributeValue.setStringValue(url);
// Create the feed item and operation.
FeedItem item = new FeedItem();
item.setFeedId(siteLinksFeed.siteLinksFeedId);
item.setAttributeValues(