Package org.cyclos.entities.system
Class CustomRecurringTaskLog
- java.lang.Object
-
- org.cyclos.entities.SimpleEntity
-
- org.cyclos.entities.NetworkedEntity
-
- org.cyclos.entities.system.CustomRecurringTaskLog
-
- All Implemented Interfaces:
Cloneable,HasNetwork,ProcessableForProxying,IEntity
@Entity public class CustomRecurringTaskLog extends NetworkedEntity
Logs an execution of aCustomRecurringTask
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.cyclos.entities.SimpleEntity
SimpleEntity.EntityLoadNotifier
-
-
Constructor Summary
Constructors Constructor Description CustomRecurringTaskLog()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DategetDate()StringgetErrorStackTrace()StringgetMessage()NetworkgetNetwork()Returns the network this entity belongs toCustomRecurringTaskLogStatusgetStatus()CustomRecurringTaskgetTask()IntegergetTimeTaken()booleanisSuccess()voidsetDate(Date date)voidsetErrorStackTrace(String errorStackTrace)voidsetMessage(String message)voidsetStatus(CustomRecurringTaskLogStatus status)voidsetTask(CustomRecurringTask task)voidsetTimeTaken(Integer timeTaken)-
Methods inherited from class org.cyclos.entities.NetworkedEntity
isGlobal
-
Methods inherited from class org.cyclos.entities.SimpleEntity
equals, getId, hashCode, id, ids, isPersistent, isTransient, register, setId, toShortString, toString, uniqueIds, uniqueIds
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.cyclos.entities.ProcessableForProxying
getProxyClass
-
-
-
-
Method Detail
-
getDate
public Date getDate()
-
getErrorStackTrace
public String getErrorStackTrace()
-
getMessage
public String getMessage()
-
getNetwork
public Network getNetwork()
Description copied from interface:HasNetworkReturns the network this entity belongs to
-
getStatus
public CustomRecurringTaskLogStatus getStatus()
-
getTask
public CustomRecurringTask getTask()
-
getTimeTaken
public Integer getTimeTaken()
-
isSuccess
public boolean isSuccess()
-
setDate
public void setDate(Date date)
-
setErrorStackTrace
public void setErrorStackTrace(String errorStackTrace)
-
setMessage
public void setMessage(String message)
-
setStatus
public void setStatus(CustomRecurringTaskLogStatus status)
-
setTask
public void setTask(CustomRecurringTask task)
-
setTimeTaken
public void setTimeTaken(Integer timeTaken)
-
-