Package org.apache.syncope.common.lib.to
Class JobTO
- java.lang.Object
-
- org.apache.syncope.common.lib.to.JobTO
-
- All Implemented Interfaces:
Serializable,BaseBean
public class JobTO extends Object implements BaseBean
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JobTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetRefDesc()StringgetRefKey()OffsetDateTimegetStart()StringgetStatus()JobTypegetType()booleanisRunning()booleanisScheduled()voidsetRefDesc(String refDesc)voidsetRefKey(String refKey)voidsetRunning(boolean running)voidsetScheduled(boolean scheduled)voidsetStart(OffsetDateTime start)voidsetStatus(String status)voidsetType(JobType type)
-
-
-
Method Detail
-
getType
public JobType getType()
-
setType
public void setType(JobType type)
-
getRefKey
public String getRefKey()
-
setRefKey
public void setRefKey(String refKey)
-
getRefDesc
public String getRefDesc()
-
setRefDesc
public void setRefDesc(String refDesc)
-
isRunning
public boolean isRunning()
-
setRunning
public void setRunning(boolean running)
-
isScheduled
public boolean isScheduled()
-
setScheduled
public void setScheduled(boolean scheduled)
-
getStart
public OffsetDateTime getStart()
-
setStart
public void setStart(OffsetDateTime start)
-
getStatus
public String getStatus()
-
setStatus
public void setStatus(String status)
-
-