Package com.dotcms.repackage.twitter4j

Examples of com.dotcms.repackage.twitter4j.Status


        TwitterFactory tf = new TwitterFactory(cb.build());
        Twitter twitter = tf.getInstance();


     
        Status stat = twitter.updateStatus(tweatThis);
       
       

        WorkflowComment comment = new WorkflowComment();
        comment.setPostedBy(processor.getUser().getUserId());
        comment.setComment("Tweeted: " + tweatThis + " twitterId:" + stat.getId());
        comment.setWorkflowtaskId(processor.getTask().getId());
        try {
          APILocator.getWorkflowAPI().saveComment(comment);
        } catch (DotDataException e) {
          Logger.error(CommentOnWorkflowActionlet.class,e.getMessage(),e);
View Full Code Here

TOP

Related Classes of com.dotcms.repackage.twitter4j.Status

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.