Class MessageIndexQueryRequest
- java.lang.Object
-
- org.flowable.common.rest.api.PaginateRequest
-
- com.flowable.engage.engine.impl.indexing.MessageIndexQueryRequest
-
public class MessageIndexQueryRequest extends PaginateRequest
- Author:
- Javier Casal
-
-
Field Summary
Fields Modifier and Type Field Description protected String
participantUserId
protected String
searchText
protected String
senderId
protected Instant
sentAfter
protected Instant
sentBefore
-
Fields inherited from class org.flowable.common.rest.api.PaginateRequest
order, size, sort, start
-
-
Constructor Summary
Constructors Constructor Description MessageIndexQueryRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getParticipantUserId()
String
getSearchText()
String
getSenderId()
Instant
getSentAfter()
Instant
getSentBefore()
Integer
getSize()
Integer
getStart()
boolean
isExcludePrivate()
boolean
isExcludeSticky()
void
setExcludePrivate(boolean excludePrivate)
void
setExcludeSticky(boolean excludeSticky)
void
setParticipantUserId(String participantUserId)
void
setSearchText(String searchText)
void
setSenderId(String senderId)
void
setSentAfter(Instant sentAfter)
void
setSentBefore(Instant sentBefore)
-
-
-
Method Detail
-
getSearchText
public String getSearchText()
-
setSearchText
public void setSearchText(String searchText)
-
getSenderId
public String getSenderId()
-
setSenderId
public void setSenderId(String senderId)
-
getParticipantUserId
public String getParticipantUserId()
-
setParticipantUserId
public void setParticipantUserId(String participantUserId)
-
getSentAfter
public Instant getSentAfter()
-
setSentAfter
public void setSentAfter(Instant sentAfter)
-
getSentBefore
public Instant getSentBefore()
-
setSentBefore
public void setSentBefore(Instant sentBefore)
-
isExcludePrivate
public boolean isExcludePrivate()
-
setExcludePrivate
public void setExcludePrivate(boolean excludePrivate)
-
isExcludeSticky
public boolean isExcludeSticky()
-
setExcludeSticky
public void setExcludeSticky(boolean excludeSticky)
-
getStart
public Integer getStart()
- Overrides:
getStart
in classPaginateRequest
-
getSize
public Integer getSize()
- Overrides:
getSize
in classPaginateRequest
-
-