All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fi.evolver.ai.vaadin.ChatAttachmentRepository Maven / Gradle / Ivy

The newest version!
package fi.evolver.ai.vaadin;

import java.util.List;

import org.springframework.data.jpa.repository.JpaRepository;

import fi.evolver.ai.vaadin.entity.Chat;
import fi.evolver.ai.vaadin.entity.ChatAttachment;

public interface ChatAttachmentRepository extends JpaRepository {

    public ChatAttachment findChatAttachmentByChat(Chat chat);
    public List findChatAttachmentsByChat(Chat chat);
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy