Interface ExternalResourceRepo
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<JPAExternalResource,,String> DAO<ExternalResource>,ExternalResourceDAO,ExternalResourceRepoExt,org.springframework.data.repository.ListCrudRepository<JPAExternalResource,,String> org.springframework.data.repository.Repository<JPAExternalResource,String>
public interface ExternalResourceRepo
extends org.springframework.data.repository.ListCrudRepository<JPAExternalResource,String>, ExternalResourceRepoExt, ExternalResourceDAO
-
Field Summary
Fields inherited from interface org.apache.syncope.core.persistence.api.dao.DAO
DEFAULT_SORT -
Method Summary
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, saveMethods inherited from interface org.apache.syncope.core.persistence.api.dao.DAO
count, delete, deleteById, existsById, findAll, findById, saveMethods inherited from interface org.apache.syncope.core.persistence.api.dao.ExternalResourceDAO
anyItemHaving, authFind, deleteMapping, findByPolicy, findByPropagationActionsContaining, findByProvisionSorterMethods inherited from interface org.apache.syncope.core.persistence.jpa.dao.repo.ExternalResourceRepoExt
authFind, deleteById, deleteMapping, findAll, findByPolicy, saveMethods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAll
-
Method Details
-
findByConnInstance
@Query("SELECT e FROM #{#entityName} e WHERE e.connector.id = :connInstance") List<ExternalResource> findByConnInstance(@Param("connInstance") String connInstance) - Specified by:
findByConnInstancein interfaceExternalResourceDAO
-