Interface CaseRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<Case,java.lang.String>,org.springframework.data.mongodb.repository.MongoRepository<Case,java.lang.String>,org.springframework.data.repository.PagingAndSortingRepository<Case,java.lang.String>,org.springframework.data.repository.query.QueryByExampleExecutor<Case>,org.springframework.data.querydsl.binding.QuerydslBinderCustomizer<QCase>,org.springframework.data.querydsl.QuerydslPredicateExecutor<Case>,org.springframework.data.repository.Repository<Case,java.lang.String>
- All Known Implementing Classes:
CaseRepositoryImpl
@Repository public interface CaseRepository extends org.springframework.data.mongodb.repository.MongoRepository<Case,java.lang.String>, org.springframework.data.querydsl.QuerydslPredicateExecutor<Case>, org.springframework.data.querydsl.binding.QuerydslBinderCustomizer<QCase>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidcustomize(org.springframework.data.querydsl.binding.QuerydslBindings bindings, QCase qCase)voiddeleteAllByPetriNetObjectId(org.bson.types.ObjectId petriNetObjectId)java.util.List<Case>findAllBy_idIn(java.lang.Iterable<java.lang.String> id)java.util.List<Case>findAllByPetriNetObjectId(org.bson.types.ObjectId petriNetObjectId)java.util.List<Case>findAllByProcessIdentifier(java.lang.String identifier)org.springframework.data.domain.Page<Case>findAllByUriNodeId(java.lang.String uri, org.springframework.data.domain.Pageable pageable)-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAllById, findById, save
-
Methods inherited from interface org.springframework.data.mongodb.repository.MongoRepository
findAll, findAll, findAll, findAll, insert, insert, saveAll
-
Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAll
-
-
-
-
Method Detail
-
findAllByProcessIdentifier
java.util.List<Case> findAllByProcessIdentifier(java.lang.String identifier)
-
findAllBy_idIn
java.util.List<Case> findAllBy_idIn(java.lang.Iterable<java.lang.String> id)
-
findAllByUriNodeId
org.springframework.data.domain.Page<Case> findAllByUriNodeId(java.lang.String uri, org.springframework.data.domain.Pageable pageable)
-
findAllByPetriNetObjectId
java.util.List<Case> findAllByPetriNetObjectId(org.bson.types.ObjectId petriNetObjectId)
-
deleteAllByPetriNetObjectId
void deleteAllByPetriNetObjectId(org.bson.types.ObjectId petriNetObjectId)
-
-