Package org.cyclos.entities.utils
Class BackgroundTaskExecution
- java.lang.Object
-
- org.cyclos.entities.SimpleEntity
-
- org.cyclos.entities.utils.BackgroundTaskExecution
-
- All Implemented Interfaces:
Cloneable,ProcessableForProxying,IEntity
@Entity public class BackgroundTaskExecution extends SimpleEntity
Stores a the context for a background task
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.cyclos.entities.SimpleEntity
SimpleEntity.EntityLoadNotifier
-
-
Constructor Summary
Constructors Constructor Description BackgroundTaskExecution()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClassName()StringgetContext()CustomBackgroundTaskgetCustom()StringgetDisplay()ForkJoingetForkJoin()BackgroundTaskPrioritygetPriority()DategetScheduledFor()DategetSubmittedAt()voidsetClassName(String className)voidsetContext(String context)voidsetCustom(CustomBackgroundTask custom)voidsetDisplay(String display)voidsetForkJoin(ForkJoin forkJoin)voidsetPriority(BackgroundTaskPriority priority)voidsetScheduledFor(Date scheduledFor)voidsetSubmittedAt(Date submittedAt)-
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
-
getClassName
public String getClassName()
-
getContext
public String getContext()
-
getCustom
public CustomBackgroundTask getCustom()
-
getDisplay
public String getDisplay()
-
getForkJoin
public ForkJoin getForkJoin()
-
getPriority
public BackgroundTaskPriority getPriority()
-
getScheduledFor
public Date getScheduledFor()
-
getSubmittedAt
public Date getSubmittedAt()
-
setClassName
public void setClassName(String className)
-
setContext
public void setContext(String context)
-
setCustom
public void setCustom(CustomBackgroundTask custom)
-
setDisplay
public void setDisplay(String display)
-
setForkJoin
public void setForkJoin(ForkJoin forkJoin)
-
setPriority
public void setPriority(BackgroundTaskPriority priority)
-
setScheduledFor
public void setScheduledFor(Date scheduledFor)
-
setSubmittedAt
public void setSubmittedAt(Date submittedAt)
-
-