Package com.flowable.platform.service
Class CommentQueryRequest
- java.lang.Object
-
- org.flowable.common.rest.api.PaginateRequest
-
- com.flowable.platform.service.CommentQueryRequest
-
public class CommentQueryRequest extends PaginateRequest
-
-
Field Summary
Fields Modifier and Type Field Description protected String
content
protected String
contentLike
protected Date
createdAfter
protected Date
createdBefore
protected String
scopeId
protected String
scopeType
protected Date
updatedAfter
protected Date
updatedBefore
protected String
userId
-
Fields inherited from class org.flowable.common.rest.api.PaginateRequest
order, size, sort, start
-
-
Constructor Summary
Constructors Constructor Description CommentQueryRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getContent()
String
getContentLike()
Date
getCreatedAfter()
Date
getCreatedBefore()
String
getScopeId()
String
getScopeType()
Date
getUpdatedAfter()
Date
getUpdatedBefore()
String
getUserId()
void
setContent(String content)
void
setContentLike(String contentLike)
void
setCreatedAfter(Date createdAfter)
void
setCreatedBefore(Date createdBefore)
void
setScopeId(String scopeId)
void
setScopeType(String scopeType)
void
setUpdatedAfter(Date updatedAfter)
void
setUpdatedBefore(Date updatedBefore)
void
setUserId(String userId)
-
-
-
Field Detail
-
content
protected String content
-
userId
protected String userId
-
scopeId
protected String scopeId
-
scopeType
protected String scopeType
-
createdAfter
protected Date createdAfter
-
createdBefore
protected Date createdBefore
-
updatedAfter
protected Date updatedAfter
-
updatedBefore
protected Date updatedBefore
-
contentLike
protected String contentLike
-
-
Method Detail
-
getScopeId
public String getScopeId()
-
setScopeId
public void setScopeId(String scopeId)
-
getScopeType
public String getScopeType()
-
setScopeType
public void setScopeType(String scopeType)
-
getContent
public String getContent()
-
setContent
public void setContent(String content)
-
getUserId
public String getUserId()
-
setUserId
public void setUserId(String userId)
-
getCreatedAfter
public Date getCreatedAfter()
-
setCreatedAfter
public void setCreatedAfter(Date createdAfter)
-
getCreatedBefore
public Date getCreatedBefore()
-
setCreatedBefore
public void setCreatedBefore(Date createdBefore)
-
getUpdatedAfter
public Date getUpdatedAfter()
-
setUpdatedAfter
public void setUpdatedAfter(Date updatedAfter)
-
getUpdatedBefore
public Date getUpdatedBefore()
-
setUpdatedBefore
public void setUpdatedBefore(Date updatedBefore)
-
getContentLike
public String getContentLike()
-
setContentLike
public void setContentLike(String contentLike)
-
-