public interface PersistedSectionContentRepository<T extends PersistedSectionContent>
extends org.springframework.data.repository.CrudRepository<T,java.lang.String>
| Modifier and Type | Method and Description |
|---|---|
void |
deleteBy(Document document) |
<S> S |
findBy(Document document,
SectionTemplate sectionTemplate) |
@Query(value="select s from PersistedSectionContent s where s.document = ?1 and s.sectionTemplate = ?2") <S> S findBy(Document document, SectionTemplate sectionTemplate)
@Modifying @Query(value="delete from PersistedSectionContent s where s.document = ?1") void deleteBy(Document document)