return userInfo == null ? null : userInfo.getEmail();
}
public FeedInfo getFeedInfoFromXml(String feedInfoXml) throws FeedServerAdapterException {
try {
return new SimpleFeedInfo(feedInfoXml);
} catch (SAXException e) {
throw new FeedServerAdapterException(FeedServerAdapterException.Reason.BAD_FEED_TYPE_CONFIG,
e.getMessage());
} catch (IOException e) {
throw new FeedServerAdapterException(FeedServerAdapterException.Reason.BAD_FEED_TYPE_CONFIG,