Package com.gtp.domain

Examples of com.gtp.domain.Comment


    }
    return "OK";
  }

  public String commentChair() {
    Comment comment = new Comment();
    comment.setBody(body);
    comment.setHeader(header);
    comment.setUser(getAuthenticatedUser());
    commentService.addComment(comment);
    if (freeChair.getComments() == null)
      freeChair.setComments(new ArrayList<Comment>());
    freeChair.getComments().add(comment);
    try {
View Full Code Here

TOP

Related Classes of com.gtp.domain.Comment

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.