* @throws TwitterException
*/
public TweetPublishedMetadata updateTwitterStatus(final String tweet) throws TwitterException{
log.debug("twitter update status 2--> "+tweet);
final Twitter twitter = this.getTwitterInstance();
final Status twitterStatus = twitter.updateStatus(tweet);
log.debug("twitter update status "+twitterStatus);
TweetPublishedMetadata status = createStatus(tweet);
status.setTweetId(String.valueOf(twitterStatus.getId()));
//statusTweet.set status.g
status.setDatePublished(twitterStatus.getCreatedAt());
status.setProvider(this.socialAccount.getAccounType().name());
status.setSocialAccountId(this.socialAccount.getId());
status.setSocialAccountName(this.socialAccount.getSocialAccountName());
//statusTweet.setProvider(SocialProvider.TWITTER);
log.debug("twitter update statusTweet "+status);