Uses of Class
com.silverpeas.comment.model.Comment

Packages that use Comment
com.silverpeas.comment.dao   
com.silverpeas.comment.dao.jdbc   
com.silverpeas.comment.service   
com.silverpeas.comment.service.notification   
com.silverpeas.comment.socialnetwork   
com.silverpeas.comment.web Provides the REST web service that handle requests about comments on a given resource in published in Silverpeas. 
 

Uses of Comment in com.silverpeas.comment.dao
 

Methods in com.silverpeas.comment.dao that return Comment
 Comment CommentDAO.getComment(CommentPK pk)
          Gets the comment identified by the specified primary key.
 

Methods in com.silverpeas.comment.dao that return types with arguments of type Comment
 List<Comment> CommentDAO.getAllCommentsByForeignKey(String resourceType, ForeignPK pk)
          Gets all the comments of the publication identified by the resource type and the specified foreign key.
 List<Comment> CommentDAO.getLastComments(String instanceId, int count)
          Gets the last comments posted to the publications in the specified component instance.
 

Methods in com.silverpeas.comment.dao with parameters of type Comment
 CommentPK CommentDAO.saveComment(Comment cmt)
          Saves the specified comment into the underlying data source.
 void CommentDAO.updateComment(Comment cmt)
          Updates the comment in the data source identified by the specified one with the values carried by the specified comment.
 

Uses of Comment in com.silverpeas.comment.dao.jdbc
 

Methods in com.silverpeas.comment.dao.jdbc that return Comment
 Comment JDBCCommentDAO.getComment(CommentPK pk)
           
 Comment JDBCCommentRequester.getComment(Connection con, CommentPK pk)
          Gets the comment identified by the specified identifier.
 

Methods in com.silverpeas.comment.dao.jdbc that return types with arguments of type Comment
 List<Comment> JDBCCommentRequester.getAllComments(Connection con, String resourceType, WAPrimaryKey foreign_pk)
           
 List<Comment> JDBCCommentDAO.getAllCommentsByForeignKey(String resourceType, ForeignPK foreign_pk)
           
 List<Comment> JDBCCommentRequester.getLastComments(Connection con, String instanceId, int count)
           
 List<Comment> JDBCCommentDAO.getLastComments(String instanceId, int count)
           
 

Methods in com.silverpeas.comment.dao.jdbc with parameters of type Comment
 CommentPK JDBCCommentDAO.saveComment(Comment cmt)
           
 CommentPK JDBCCommentRequester.saveComment(Connection con, Comment cmt)
          Saves the specified comment with the specified connection onto a data source.
 void JDBCCommentDAO.updateComment(Comment cmt)
           
 void JDBCCommentRequester.updateComment(Connection con, Comment cmt)
          Updates the comment representation in the data source by the specified one.
 

Uses of Comment in com.silverpeas.comment.service
 

Methods in com.silverpeas.comment.service that return Comment
 Comment DefaultCommentService.getComment(CommentPK pk)
          Gets the comment that identified by the specified identifier.
 Comment CommentService.getComment(CommentPK pk)
           
 Comment DefaultCommentService.getContentById(String contentId)
           
 

Methods in com.silverpeas.comment.service that return types with arguments of type Comment
 List<Comment> DefaultCommentService.getAllCommentsOnPublication(String resourceType, WAPrimaryKey pk)
          Gets all of the comments on the publication identified by the resource type and the specified identifier.
 List<Comment> CommentService.getAllCommentsOnPublication(String resourceType, WAPrimaryKey pk)
           
 List<Comment> DefaultCommentService.getLastComments(String resourceType, int count)
           
 List<Comment> CommentService.getLastComments(String resourceType, int count)
           
 

Methods in com.silverpeas.comment.service with parameters of type Comment
abstract  void CommentActionListener.commentAdded(Comment addedComment)
          A comment is added to a resource in a Silverpeas component instance.
 void CommentUserNotificationService.commentAdded(Comment newComment)
          Sends a notification to the users that are concerned by the specified new comment on a given resource (publication, blog article, ...).
abstract  void CommentActionListener.commentRemoved(Comment removedComment)
          A comment is removed from a resource in a Silverpeas component instance.
 void CommentUserNotificationService.commentRemoved(Comment removedComment)
          No notifications are sent to the users when a comment is removed.
 void DefaultCommentService.createAndIndexComment(Comment cmt)
          Creates and indexes the specified comment into the business layer.
 void CommentService.createAndIndexComment(Comment cmt)
           
 void DefaultCommentService.createComment(Comment cmt)
          Creates the specified comment into the business layer.
 void CommentService.createComment(Comment cmt)
           
 void DefaultCommentService.deleteComment(Comment comment)
          Deletes the specified comment.
 void CommentService.deleteComment(Comment comment)
           
 void CommentActionNotifier.notifyCommentAdding(Comment addedComment)
          Notifies the specified comment was added to a resource in Silverpeas.
 void CommentActionNotifier.notifyCommentRemoval(Comment removedComment)
          Notifies the specified comment was removed from a resource in Silverpeas.
 void DefaultCommentService.updateAndIndexComment(Comment cmt)
          Updates and indexes the specified comment in the business layer.
 void CommentService.updateAndIndexComment(Comment cmt)
           
 void DefaultCommentService.updateComment(Comment cmt)
          Updates the specified comment in the business layer.
 void CommentService.updateComment(Comment cmt)
           
 

Constructors in com.silverpeas.comment.service with parameters of type Comment
CommentUserNotification(CommentService commentService, Comment comment, SilverpeasContent commentedContent, String subjectKey, ResourceLocator componentMessages, Set<String> recipients)
           
 

Uses of Comment in com.silverpeas.comment.service.notification
 

Methods in com.silverpeas.comment.service.notification with parameters of type Comment
 void DefaultCommentUserNotificationService.commentAdded(Comment newComment)
          Sends a notification to the users that are concerned by the specified new comment on a given resource (publication, blog article, ...).
 void DefaultCommentUserNotificationService.commentRemoved(Comment removedComment)
          No notifications are sent to the users when a comment is removed.
 

Uses of Comment in com.silverpeas.comment.socialnetwork
 

Methods in com.silverpeas.comment.socialnetwork that return Comment
 Comment SocialInformationComment.getComment()
           
 

Constructors in com.silverpeas.comment.socialnetwork with parameters of type Comment
SocialInformationComment(Comment comment)
          Constructor with one param
 

Uses of Comment in com.silverpeas.comment.web
 

Methods in com.silverpeas.comment.web that return Comment
 Comment CommentEntity.toComment()
          Gets the comment business objet this entity represent.
 

Methods in com.silverpeas.comment.web that return types with arguments of type Comment
protected static Comparator<Comment> CommentResource.byId()
          Gets a comparator of comments by their identifier, from the lower to the higher one.
 

Methods in com.silverpeas.comment.web with parameters of type Comment
protected  CommentEntity CommentResource.asWebEntity(Comment comment, URI commentURI)
          Converts the comment into its corresponding web entity.
static CommentEntity CommentEntity.fromComment(Comment comment)
          Creates a new comment entity from the specified comment.
static List<CommentEntity> CommentEntity.fromComments(Comment... comments)
          Creates several new comment entities from the specified comments.
 

Method parameters in com.silverpeas.comment.web with type arguments of type Comment
protected  CommentEntity[] CommentResource.asWebEntities(List<Comment> comments)
          Converts the specified list of comments into their corresponding web entities.
static List<CommentEntity> CommentEntity.fromComments(List<Comment> comments)
          Creates several new comment entities from the specified list of comments.
 

Constructors in com.silverpeas.comment.web with parameters of type Comment
CommentEntity(Comment comment)
           
 



Copyright © 2016 Silverpeas. All Rights Reserved.