Package org.jboss.seam.wiki.core.model

Examples of org.jboss.seam.wiki.core.model.WikiSpamReport


     * @param commentId
     * @return
     */
    public String reportAsSpam(Long commentId)
    {
       WikiSpamReport report = new WikiSpamReport();
       setNodeId(commentId);
       report.setComment(getInstance());
       report.setReporter(currentUser);
      
       getEntityManager().persist(report);
      
       StatusMessages.instance().addFromResourceBundleOrDefault(
             INFO,
View Full Code Here

TOP

Related Classes of org.jboss.seam.wiki.core.model.WikiSpamReport

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.