Class DeleteInfo
- java.lang.Object
-
- com.gentics.contentnode.rest.model.DeleteInfo
-
- All Implemented Interfaces:
Serializable
public class DeleteInfo extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeleteInfo()
Empty constructorDeleteInfo(int at, User by)
Create an instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAt()
Date when the object was deletedUser
getBy()
User who deleted the objectvoid
setAt(int at)
Set deletion datevoid
setBy(User by)
Set user who deleted the object
-
-
-
Constructor Detail
-
DeleteInfo
public DeleteInfo()
Empty constructor
-
DeleteInfo
public DeleteInfo(int at, User by)
Create an instance- Parameters:
at
- deleted atby
- deleted by
-
-
Method Detail
-
getAt
public int getAt()
Date when the object was deleted- Returns:
- date of deletion
-
setAt
public void setAt(int at)
Set deletion date- Parameters:
at
- deletion date
-
getBy
public User getBy()
User who deleted the object- Returns:
- user
-
setBy
public void setBy(User by)
Set user who deleted the object- Parameters:
by
- user
-
-