Uses of Class
ru.kpekepsalt.ruvik.model.Conversation
- 
Packages that use Conversation Package Description ru.kpekepsalt.ruvik.controller ru.kpekepsalt.ruvik.mapper ru.kpekepsalt.ruvik.repository ru.kpekepsalt.ruvik.service ru.kpekepsalt.ruvik.service.Impl  - 
- 
Uses of Conversation in ru.kpekepsalt.ruvik.controller
Methods in ru.kpekepsalt.ruvik.controller that return types with arguments of type Conversation Modifier and Type Method Description org.springframework.http.ResponseEntity<ResponseDto<List<Conversation>>>ConversationController. getPendingConversations() - 
Uses of Conversation in ru.kpekepsalt.ruvik.mapper
Methods in ru.kpekepsalt.ruvik.mapper that return Conversation Modifier and Type Method Description ConversationCloneMapper. cloneConversation(Conversation conversation)ConversationCloneMapperImpl. cloneConversation(Conversation conversation)Methods in ru.kpekepsalt.ruvik.mapper with parameters of type Conversation Modifier and Type Method Description ConversationCloneMapper. cloneConversation(Conversation conversation)ConversationCloneMapperImpl. cloneConversation(Conversation conversation)ConversationDtoConversationMapper. conversationToDto(Conversation conversation)ConversationDtoConversationMapperImpl. conversationToDto(Conversation conversation) - 
Uses of Conversation in ru.kpekepsalt.ruvik.repository
Methods in ru.kpekepsalt.ruvik.repository that return types with arguments of type Conversation Modifier and Type Method Description List<Conversation>ConversationRepository. findByReceiverId(Long id)Optional<Conversation>ConversationRepository. findByReceiverIdAndSenderId(Long receiver, Long sender)List<Conversation>ConversationRepository. findBySenderId(Long id)Optional<Conversation>ConversationRepository. findBySessionKey(String sessionKey)List<Conversation>ConversationRepository. findByStatusAndReceiverId(ConversationStatus status, Long id)List<Conversation>ConversationRepository. findByStatusAndSenderId(ConversationStatus status, Long id) - 
Uses of Conversation in ru.kpekepsalt.ruvik.service
Methods in ru.kpekepsalt.ruvik.service that return Conversation Modifier and Type Method Description ConversationConversationService. findById(Long id)Search conversation by idConversationConversationService. findByReceiverIdAndSenderId(Long receiver, Long sender)Search conversation between receiver and senderConversationConversationService. findBySession(String sessionKey)Search conversation by session keyConversationMessageService. haveConversation(Long id)Checks if conversation with given id existsConversationConversationService. save(Conversation conversation)Saves conversation dataMethods in ru.kpekepsalt.ruvik.service that return types with arguments of type Conversation Modifier and Type Method Description List<Conversation>ConversationService. findByStatusAndReceiverId(ConversationStatus status, Long id)Search conversations by status and receiver idMethods in ru.kpekepsalt.ruvik.service with parameters of type Conversation Modifier and Type Method Description ConversationConversationService. save(Conversation conversation)Saves conversation data - 
Uses of Conversation in ru.kpekepsalt.ruvik.service.Impl
Methods in ru.kpekepsalt.ruvik.service.Impl that return Conversation Modifier and Type Method Description ConversationConversationServiceImpl. findById(Long id)ConversationConversationServiceImpl. findByReceiverIdAndSenderId(Long receiver, Long sender)ConversationConversationServiceImpl. findBySession(String sessionKey)ConversationMessageServiceImpl. haveConversation(Long id)ConversationConversationServiceImpl. save(Conversation conversation)Methods in ru.kpekepsalt.ruvik.service.Impl that return types with arguments of type Conversation Modifier and Type Method Description List<Conversation>ConversationServiceImpl. findByStatusAndReceiverId(ConversationStatus status, Long id)Methods in ru.kpekepsalt.ruvik.service.Impl with parameters of type Conversation Modifier and Type Method Description ConversationConversationServiceImpl. save(Conversation conversation) 
 -