Interface LdapUserRefRepository

  • All Superinterfaces:
    org.springframework.data.repository.CrudRepository<LdapUserRef,​javax.naming.Name>, org.springframework.data.ldap.repository.LdapRepository<LdapUserRef>, org.springframework.data.querydsl.QuerydslPredicateExecutor<LdapUserRef>, org.springframework.data.repository.Repository<LdapUserRef,​javax.naming.Name>

    @Repository
    @ConditionalOnExpression("${nae.ldap.enabled:false}")
    public interface LdapUserRefRepository
    extends org.springframework.data.ldap.repository.LdapRepository<LdapUserRef>, org.springframework.data.querydsl.QuerydslPredicateExecutor<LdapUserRef>
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.List<LdapUserRef> findAll()  
      java.util.List<LdapUserRef> findAll​(com.querydsl.core.types.Predicate predicate)  
      LdapUserRef findByCn​(java.lang.String cn)  
      LdapUserRef findByDn​(java.lang.String dn)  
      • Methods inherited from interface org.springframework.data.repository.CrudRepository

        count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
      • Methods inherited from interface org.springframework.data.ldap.repository.LdapRepository

        findAll, findAllById, findOne, saveAll
      • Methods inherited from interface org.springframework.data.querydsl.QuerydslPredicateExecutor

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

      • findByDn

        LdapUserRef findByDn​(java.lang.String dn)
      • findByCn

        LdapUserRef findByCn​(java.lang.String cn)
      • findAll

        java.util.List<LdapUserRef> findAll​(com.querydsl.core.types.Predicate predicate)
        Specified by:
        findAll in interface org.springframework.data.querydsl.QuerydslPredicateExecutor<LdapUserRef>
      • findAll

        java.util.List<LdapUserRef> findAll()
        Specified by:
        findAll in interface org.springframework.data.repository.CrudRepository<LdapUserRef,​javax.naming.Name>
        Specified by:
        findAll in interface org.springframework.data.ldap.repository.LdapRepository<LdapUserRef>