Class Workflow
- java.lang.Object
-
- com.gentics.contentnode.rest.model.Workflow
-
- All Implemented Interfaces:
Serializable
public class Workflow extends Object implements Serializable
Workflow information about the page- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Workflow()
Create an empty instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Group>
getGroups()
String
getMessage()
int
getTimestamp()
User
getUser()
boolean
isModified()
void
setGroups(List<Group> groups)
void
setMessage(String message)
void
setModified(boolean modified)
void
setTimestamp(int timestamp)
void
setUser(User user)
-
-
-
Method Detail
-
getMessage
public String getMessage()
- Returns:
- the message
-
getUser
public User getUser()
- Returns:
- the user
-
isModified
public boolean isModified()
- Returns:
- the modified
-
setMessage
public void setMessage(String message)
- Parameters:
message
- the message to set
-
setUser
public void setUser(User user)
- Parameters:
user
- the user to set
-
setModified
public void setModified(boolean modified)
- Parameters:
modified
- the modified to set
-
getTimestamp
public int getTimestamp()
- Returns:
- the timestamp
-
setTimestamp
public void setTimestamp(int timestamp)
- Parameters:
timestamp
- the timestamp to set
-
-