Examples of addHashtags()


Examples of com.streamreduce.core.model.messages.SobaMessage.addHashtags()

    public void addCommentToMessage(Account account, ObjectId messageId, MessageComment comment, Set<String> hashtags)
            throws MessageNotFoundException {
        SobaMessage message = getMessage(account, messageId);
        message.addComment(comment);
        if (hashtags != null && !hashtags.isEmpty()) {
            message.addHashtags(hashtags);
        }
        updateMessage(account, message);
        emailService.sendCommentAddedEmail(account, message, comment);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.