public static ItemGeoLocationBean convertTweetPollSavedPublishedToSocialGeoBean(
final Long itemId, final TypeSearchResult itemType,
final float latitude, final float longitude, final String question,
final double distance, final String socialLink,
final String socialType) {
final ItemGeoLocationBean socialGeoBean = new ItemGeoLocationBean();
socialGeoBean.setDistance(distance);
socialGeoBean.setItemType(itemType);
socialGeoBean.setLatitude(latitude);
socialGeoBean.setLongitude(longitude);
socialGeoBean.setQuestion(question);
socialGeoBean.setSocialLink(socialLink);
socialGeoBean.setSocialType(socialType);
return socialGeoBean;
}