Package org.openiam.esb.repository
Interface AuthStateAuthParamXrefRepository
-
- All Superinterfaces:
AbstractEntityRepository<AuthStateAuthParamXrefEntity,String>
,org.springframework.data.repository.CrudRepository<AuthStateAuthParamXrefEntity,String>
,org.springframework.data.jpa.repository.JpaRepository<AuthStateAuthParamXrefEntity,String>
,org.springframework.data.jpa.repository.JpaSpecificationExecutor<AuthStateAuthParamXrefEntity>
,org.springframework.data.repository.PagingAndSortingRepository<AuthStateAuthParamXrefEntity,String>
,org.springframework.data.repository.query.QueryByExampleExecutor<AuthStateAuthParamXrefEntity>
,org.springframework.data.repository.Repository<AuthStateAuthParamXrefEntity,String>
@Repository public interface AuthStateAuthParamXrefRepository extends AbstractEntityRepository<AuthStateAuthParamXrefEntity,String>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
deleteByUserId(String userId)
void
deleteByUserIdAndSessionId(String userId, String sessuinId)
List<AuthStateAuthParamXrefEntity>
findByUserId(String userId)
List<AuthStateAuthParamXrefEntity>
findByUserIdAndSessionId(String userId, String sessionId)
-
Methods inherited from interface org.openiam.esb.repository.AbstractEntityRepository
getPageable
-
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.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getById, getOne, getReferenceById, saveAll, saveAllAndFlush, saveAndFlush
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaSpecificationExecutor
count, exists, findAll, findAll, findAll, findOne
-
-
-
-
Method Detail
-
findByUserId
List<AuthStateAuthParamXrefEntity> findByUserId(String userId)
-
findByUserIdAndSessionId
List<AuthStateAuthParamXrefEntity> findByUserIdAndSessionId(String userId, String sessionId)
-
deleteByUserId
void deleteByUserId(String userId)
-
-