msg.putLongProperty(TwitterConstants.KEY_IN_REPLY_TO_STATUS_ID, status.getInReplyToStatusId());
msg.putIntProperty(TwitterConstants.KEY_IN_REPLY_TO_USER_ID, status.getInReplyToUserId());
msg.putBooleanProperty(TwitterConstants.KEY_IS_FAVORITED, status.isFavorited());
msg.putBooleanProperty(TwitterConstants.KEY_IS_RETWEET, status.isRetweet());
msg.putObjectProperty(TwitterConstants.KEY_CONTRIBUTORS, status.getContributors());
GeoLocation gl;
if ((gl = status.getGeoLocation()) != null)
{
msg.putDoubleProperty(TwitterConstants.KEY_GEO_LOCATION_LATITUDE, gl.getLatitude());
msg.putDoubleProperty(TwitterConstants.KEY_GEO_LOCATION_LONGITUDE, gl.getLongitude());
}
Place place;
if ((place = status.getPlace()) != null)
{
msg.putStringProperty(TwitterConstants.KEY_PLACE_ID, place.getId());