Interface SequenceFileRepository

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      <S extends SequenceFile>
      S
      save​(S entity)
      Save is overridden here instead of in FilesystemSupplementedRepository as it would throw a compilation error
      • Methods inherited from interface org.springframework.data.repository.CrudRepository

        count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, saveAll
      • Methods inherited from interface org.springframework.data.jpa.repository.JpaSpecificationExecutor

        count, exists, findAll, findAll, findAll, findOne
      • Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

        findAll, findAll
      • Methods inherited from interface org.springframework.data.repository.history.RevisionRepository

        findLastChangeRevision, findRevision, findRevisions, findRevisions
    • Method Detail

      • save

        <S extends SequenceFile> S save​(S entity)
        Save is overridden here instead of in FilesystemSupplementedRepository as it would throw a compilation error
        Specified by:
        save in interface org.springframework.data.repository.CrudRepository<SequenceFile,​java.lang.Long>