Interface ConversationsCommentRepository
-
- All Superinterfaces:
Repository<ConversationsComment,String>,SpringCrudRepository<ConversationsComment,String>
public interface ConversationsCommentRepository extends SpringCrudRepository<ConversationsComment,String>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegerdeleteByPostId(String postId)IntegerdeleteByTopicId(String topicId)List<ConversationsComment>findByPostId(String postId)List<ConversationsComment>findBySiteId(String siteId)IntegerlockByPostId(String postId, Boolean locked)IntegerlockBySiteId(String siteId, Boolean locked)-
Methods inherited from interface org.sakaiproject.springframework.data.SpringCrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findAll, findAll, findAllById, findById, getById, save, saveAll
-
-
-
-
Method Detail
-
findByPostId
List<ConversationsComment> findByPostId(String postId)
-
findBySiteId
List<ConversationsComment> findBySiteId(String siteId)
-
-