Class WorkflowRequest
- java.lang.Object
-
- com.gentics.contentnode.rest.model.request.WorkflowRequest
-
public class WorkflowRequest extends Object
Request for modifying a page in the workflow
-
-
Constructor Summary
Constructors Constructor Description WorkflowRequest()
Empty constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getGroup()
Get the group IDString
getMessage()
Get the messageboolean
isDelete()
void
setDelete(boolean delete)
void
setGroup(Integer group)
Set the group IDvoid
setMessage(String message)
Set the message
-
-
-
Method Detail
-
getMessage
public String getMessage()
Get the message- Returns:
- the message
-
getGroup
public Integer getGroup()
Get the group ID- Returns:
- the group
-
setMessage
public void setMessage(String message)
Set the message- Parameters:
message
- the message to set
-
setGroup
public void setGroup(Integer group)
Set the group ID- Parameters:
group
- the group to set
-
isDelete
public boolean isDelete()
- Returns:
- the delete
-
setDelete
public void setDelete(boolean delete)
- Parameters:
delete
- the delete to set
-
-