Class ActionLogEntry
- java.lang.Object
-
- com.gentics.contentnode.rest.model.response.log.ActionLogEntry
-
- All Implemented Interfaces:
Serializable
public class ActionLogEntry extends Object implements Serializable
Model of an entry in the action log- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ActionLogEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActionModel
getAction()
Performed actionint
getId()
Entry IDString
getInfo()
Additional infoint
getObjId()
ID of the object, the action was performed onint
getTimestamp()
Timestamp of the actionActionLogType
getType()
Type of the object, the action was performed onString
getUser()
Lastname and Firstname of the acting Uservoid
setAction(ActionModel action)
Set actionvoid
setId(int id)
Set the IDvoid
setInfo(String info)
Set infovoid
setObjId(int objId)
Set object IDvoid
setTimestamp(int timestamp)
Set the timestampvoid
setType(ActionLogType type)
Set object typevoid
setUser(String user)
Set the user name
-
-
-
Method Detail
-
getId
public int getId()
Entry ID- Returns:
- ID
-
setId
public void setId(int id)
Set the ID- Parameters:
id
- ID
-
getUser
public String getUser()
Lastname and Firstname of the acting User- Returns:
- user name
-
setUser
public void setUser(String user)
Set the user name- Parameters:
user
- name
-
getAction
public ActionModel getAction()
Performed action- Returns:
- action
-
setAction
public void setAction(ActionModel action)
Set action- Parameters:
action
-
-
getType
public ActionLogType getType()
Type of the object, the action was performed on- Returns:
- type
-
setType
public void setType(ActionLogType type)
Set object type- Parameters:
type
-
-
getObjId
public int getObjId()
ID of the object, the action was performed on- Returns:
- object ID
-
setObjId
public void setObjId(int objId)
Set object ID- Parameters:
objId
- ID
-
getTimestamp
public int getTimestamp()
Timestamp of the action- Returns:
- timestamp
-
setTimestamp
public void setTimestamp(int timestamp)
Set the timestamp- Parameters:
timestamp
- timestamp
-
getInfo
public String getInfo()
Additional info- Returns:
- info
-
setInfo
public void setInfo(String info)
Set info- Parameters:
info
- info
-
-