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 void customize​(org.springframework.data.querydsl.binding.QuerydslBindings bindings, QCase qCase)  
      void deleteAllByPetriNetObjectId​(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
      • Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

        count, exists, findAll, findBy, findOne
      • Methods inherited from interface org.springframework.data.querydsl.QuerydslPredicateExecutor

        count, exists, findAll, findAll, findAll, findAll, findAll, findBy, findOne
    • 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)
      • customize

        default void customize​(org.springframework.data.querydsl.binding.QuerydslBindings bindings,
                               QCase qCase)
        Specified by:
        customize in interface org.springframework.data.querydsl.binding.QuerydslBinderCustomizer<QCase>