Interface ConversationRegistryEntryQuery
-
- All Superinterfaces:
Query<ConversationRegistryEntryQuery,ConversationRegistryEntry>
- All Known Implementing Classes:
ConversationRegistryEntryQueryImpl
public interface ConversationRegistryEntryQuery extends Query<ConversationRegistryEntryQuery,ConversationRegistryEntry>
Allows for programmatic querying of conversation registry entries.- Author:
- Simon Amport
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConversationRegistryEntryQuery
conversationId(String conversationId)
ConversationRegistryEntryQuery
hasNotLeft()
ConversationRegistryEntryQuery
hasNotLeftBefore(Date hasNotLeftBefore)
ConversationRegistryEntryQuery
joiningTimeAfter(Date joiningTimeAfter)
ConversationRegistryEntryQuery
joiningTimeBefore(Date joiningTimeBefore)
ConversationRegistryEntryQuery
leavingTimeAfter(Date leavingTimeAfter)
ConversationRegistryEntryQuery
leavingTimeBefore(Date leavingTimeBefore)
ConversationRegistryEntryQuery
orderByUpdateTime()
ConversationRegistryEntryQuery
updateTimeAfter(Date updateTimeAfter)
ConversationRegistryEntryQuery
updateTimeBefore(Date updateTimeBefore)
-
-
-
Method Detail
-
conversationId
ConversationRegistryEntryQuery conversationId(String conversationId)
-
updateTimeAfter
ConversationRegistryEntryQuery updateTimeAfter(Date updateTimeAfter)
-
updateTimeBefore
ConversationRegistryEntryQuery updateTimeBefore(Date updateTimeBefore)
-
joiningTimeBefore
ConversationRegistryEntryQuery joiningTimeBefore(Date joiningTimeBefore)
-
joiningTimeAfter
ConversationRegistryEntryQuery joiningTimeAfter(Date joiningTimeAfter)
-
leavingTimeBefore
ConversationRegistryEntryQuery leavingTimeBefore(Date leavingTimeBefore)
-
leavingTimeAfter
ConversationRegistryEntryQuery leavingTimeAfter(Date leavingTimeAfter)
-
hasNotLeft
ConversationRegistryEntryQuery hasNotLeft()
-
hasNotLeftBefore
ConversationRegistryEntryQuery hasNotLeftBefore(Date hasNotLeftBefore)
-
orderByUpdateTime
ConversationRegistryEntryQuery orderByUpdateTime()
-
-