Uses of Class
com.skava.entities.EventEntity
Packages that use EventEntity
Package
Description
Notification DB entities.
Notification domain models.
Notification repositories.
-
Uses of EventEntity in com.skava.entities
Constructor parameters in com.skava.entities with type arguments of type EventEntityModifierConstructorDescriptionQEventEntity
(com.querydsl.core.types.Path<? extends EventEntity> path) -
Uses of EventEntity in com.skava.model.domain
Methods in com.skava.model.domain that return EventEntityModifier and TypeMethodDescriptionEventDomain.toEntity()
toEntity - Used to convertEventDomain
object toEventEntity
object.Methods in com.skava.model.domain with parameters of type EventEntityModifier and TypeMethodDescriptionEventDomain.fromEntity
(EventEntity event) fromEntity - Used to convertEventEntity
object toEventDomain
object. -
Uses of EventEntity in com.skava.repository
Methods in com.skava.repository that return EventEntityModifier and TypeMethodDescriptionEventRepository.findByIdAndCollectionId
(long id, long collectionId) findByIdAndCollectionId - To find an event for the given id and collectionId.Methods in com.skava.repository that return types with arguments of type EventEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<EventEntity>
EventRepository.findAll
(org.springframework.data.jpa.domain.Specification<EventEntity> specification, org.springframework.data.domain.Pageable pageRequest) findAll - To find all the events according to the given specification.EventRepository.findByNameAndCollectionId
(String name, long collectionId) findByNameAndCollectionId - To find an event for the given name and collectionId.Method parameters in com.skava.repository with type arguments of type EventEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<EventEntity>
EventRepository.findAll
(org.springframework.data.jpa.domain.Specification<EventEntity> specification, org.springframework.data.domain.Pageable pageRequest) findAll - To find all the events according to the given specification.