Interface UserRepositoryCustom
-
- All Superinterfaces:
AbstractKeyEntityCustomRepository<UserEntity,String>
,FindBeansRepositoryCustom<UserEntity,UserSearchBean>
- All Known Subinterfaces:
UserRepository
- All Known Implementing Classes:
UserRepositoryImpl
public interface UserRepositoryCustom extends AbstractKeyEntityCustomRepository<UserEntity,String>, FindBeansRepositoryCustom<UserEntity,UserSearchBean>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description List<UserEntity>
findByIds(Collection<String> ids, UserSearchBean sb)
List<UserEntity>
findForSynchronizationRequest(SynchronizationRequestSearchBean sb)
org.springframework.data.domain.Page<UserEntity>
findSubordinatesWithFilter(@NotNull String supervisorId, String firstName, String lastName, String employeeId, String email, String login, UserStatusEnum status, Date startDate, Date endDate, Set<String> types, org.springframework.data.domain.Pageable page)
List<UserEntity>
getUserBetweenCreateDate(Date fromDate, Date toDate)
Deprecated.List<UserEntity>
getUserBetweenLastDate(Date fromDate, Date toDate)
Deprecated.List<UserEntity>
getUserBetweenStartDate(Date fromDate, Date toDate)
Deprecated.-
Methods inherited from interface org.openiam.esb.repository.custom.AbstractKeyEntityCustomRepository
findByIdIn
-
Methods inherited from interface org.openiam.esb.repository.custom.FindBeansRepositoryCustom
count, find, find, find, getByExample, getByExample, isValidSearchBean
-
-
-
-
Method Detail
-
findForSynchronizationRequest
List<UserEntity> findForSynchronizationRequest(SynchronizationRequestSearchBean sb)
-
findByIds
List<UserEntity> findByIds(Collection<String> ids, UserSearchBean sb)
-
getUserBetweenCreateDate
@Deprecated(since="4.2.1.4") List<UserEntity> getUserBetweenCreateDate(Date fromDate, Date toDate)
Deprecated.
-
getUserBetweenStartDate
@Deprecated(since="4.2.1.4") List<UserEntity> getUserBetweenStartDate(Date fromDate, Date toDate)
Deprecated.
-
getUserBetweenLastDate
@Deprecated(since="4.2.1.4") List<UserEntity> getUserBetweenLastDate(Date fromDate, Date toDate)
Deprecated.
-
findSubordinatesWithFilter
org.springframework.data.domain.Page<UserEntity> findSubordinatesWithFilter(@NotNull @NotNull String supervisorId, String firstName, String lastName, String employeeId, String email, String login, UserStatusEnum status, Date startDate, Date endDate, Set<String> types, org.springframework.data.domain.Pageable page)
-
-