Interface LdapGroupRoleRepository

  • All Superinterfaces:
    org.springframework.data.repository.CrudRepository<LdapGroup,​java.lang.String>, org.springframework.data.mongodb.repository.MongoRepository<LdapGroup,​java.lang.String>, org.springframework.data.repository.PagingAndSortingRepository<LdapGroup,​java.lang.String>, org.springframework.data.repository.query.QueryByExampleExecutor<LdapGroup>, org.springframework.data.repository.Repository<LdapGroup,​java.lang.String>

    @Repository
    @ConditionalOnExpression("${nae.ldap.enabled:false}")
    public interface LdapGroupRoleRepository
    extends org.springframework.data.mongodb.repository.MongoRepository<LdapGroup,​java.lang.String>
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.List<LdapGroup> findAllByDnIn​(java.lang.Iterable<java.lang.String> dns)  
      LdapGroup findByDn​(java.lang.String dn)  
      • Methods inherited from interface org.springframework.data.repository.CrudRepository

        count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAllById, findById, save
      • Methods inherited from interface org.springframework.data.mongodb.repository.MongoRepository

        findAll, findAll, findAll, findAll, insert, insert, saveAll
      • Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

        findAll
      • Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

        count, exists, findAll, findBy, findOne
    • Method Detail

      • findByDn

        LdapGroup findByDn​(java.lang.String dn)
      • findAllByDnIn

        java.util.List<LdapGroup> findAllByDnIn​(java.lang.Iterable<java.lang.String> dns)