Examples of CommentEntity


Examples of org.vosao.entity.CommentEntity

    return comment;
  }
 
  public CommentEntity addComment(final String name, final String content,
      final PageEntity page, final boolean disabled) {
    CommentEntity comment = new CommentEntity(name, content, new Date(),
        page.getFriendlyURL());
    comment.setDisabled(disabled);
    dao.getCommentDao().save(comment);
    return 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.