All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.data.ldap.repository.support.GenericLdapRepositoryImpl Maven / Gradle / Ivy

package org.springframework.data.ldap.repository.support;

import javax.persistence.EntityManager;

import org.springframework.data.jpa.repository.support.JpaEntityInformation;
import org.springframework.data.ldap.repository.GenericLdapRepository;
import org.springframework.data.ldap.repository.support.QueryDslLdapRepository;
import org.springframework.data.querydsl.EntityPathResolver;
import org.springframework.ldap.core.LdapOperations;
import org.springframework.ldap.odm.core.ObjectDirectoryMapper;

import com.querydsl.core.types.EntityPath;

/**
 * 
 * findTop1ByNameAllIgnoringCase
 * findAllByEnabledTrueAndCodeGroupEnabledTrueAndCodeGroupIdOrderBySequenceAsc
 * findAllByEnabledTrueOrderByNameAsc
 * findOneByClientIdIgnoreCase
 * findAllByEnabledTrueAndCodeGroupEnabledTrueAndCodeGroupIdIgnoreCaseOrderBySequenceAsc
 * 
 * ID extends java.io.Serializable & Comparable
 * TRUNCATE
 * 
 * 
 * @see org.springframework.data.repository.RepositoryDefinition#domainClass()
 * @see org.springframework.data.repository.RepositoryDefinition#idClass()
 * @see org.springframework.data.jpa.repository.support.SimpleJpaRepository
 * @see org.springframework.data.jpa.repository.support.QueryDslJpaRepository#QueryDslJpaRepository(JpaEntityInformation,
 * EntityManager)
 * @see org.springframework.data.jpa.repository.support.QueryDslJpaRepository#QueryDslJpaRepository(JpaEntityInformation,
 * EntityManager, EntityPathResolver)
 * @see org.springframework.data.jpa.repository.support.JpaMetamodelEntityInformation#JpaMetamodelEntityInformation(Class,
 * javax.persistence.metamodel.Metamodel)
 * @see javax.persistence.EntityManager#getMetamodel()
 * @see org.springframework.data.jpa.repository.support.QueryDslRepositorySupport
 * @see com.mysema.query.jpa.impl.JPADeleteClause#JPADeleteClause(EntityManager,
 * EntityPath)
 * @see com.mysema.query.jpa.impl.JPAUpdateClause#JPAUpdateClause(EntityManager,
 * EntityPath)
 * @see org.springframework.data.envers.repository.support.EnversRevisionRepositoryImpl
 * @see org.springframework.data.domain.ExampleMatcher#matching()
 * @see org.springframework.data.domain.ExampleMatcher#withMatcher(String,
 * org.springframework.data.domain.ExampleMatcher.GenericPropertyMatcher)
 * @see org.springframework.data.domain.Example#of(Object,
 * org.springframework.data.domain.ExampleMatcher)
 * @see org.springframework.orm.jpa.JpaObjectRetrievalFailureException
 */
public class GenericLdapRepositoryImpl extends QueryDslLdapRepository implements GenericLdapRepository {
  public GenericLdapRepositoryImpl(LdapOperations ldapOperations, ObjectDirectoryMapper odm, Class entityType) {
    super(ldapOperations, odm, entityType);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy