Interface ResearchObjectProfileRepository

  • All Superinterfaces:
    org.springframework.data.repository.CrudRepository<ResearchObjectProfile,​java.lang.Long>, org.springframework.data.repository.PagingAndSortingRepository<ResearchObjectProfile,​java.lang.Long>, org.springframework.data.repository.Repository<ResearchObjectProfile,​java.lang.Long>

    public interface ResearchObjectProfileRepository
    extends org.springframework.data.repository.PagingAndSortingRepository<ResearchObjectProfile,​java.lang.Long>
    A repository to handle fetching of RO profiles from the database.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.Optional<ResearchObjectProfile> findByName​(java.lang.String name)
      Lookup a profile by its name.
      • Methods inherited from interface org.springframework.data.repository.CrudRepository

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

        findAll, findAll
    • Method Detail

      • findByName

        java.util.Optional<ResearchObjectProfile> findByName​(@Param("name")
                                                             java.lang.String name)
        Lookup a profile by its name.
        Parameters:
        name - The profile name.
        Returns: