Examples of JabberBlogNotification


Examples of talkfeed.xmpp.JabberBlogNotification

    // TODO remove this when production
    if (blogTitle == null)
      blogTitle = this.getBlogTitle(entry);

    // build notification
    JabberBlogNotification notif = new JabberBlogNotification();
    notif.setBlogTitle(blogTitle);
    notif.setJabberID(jabberId);
    notif.setPostTitle(entry.getTitle());
    notif.setPostUrl(link);
    // send notif
    TalkService.sendMessage(notif);

    Logger.getLogger("UserService").info(
        "New entry for " + jabberId.getId() + " : " + link + "["
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.