Package com.soffid.iam.model
Class ScheduledTaskEntity
- java.lang.Object
-
- com.soffid.iam.model.ScheduledTaskEntity
-
- Direct Known Subclasses:
ScheduledTaskEntityImpl
public abstract class ScheduledTaskEntity extends Object
Entity ScheduledTaskEntity
-
-
Constructor Summary
Constructors Constructor Description ScheduledTaskEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an ScheduledTaskEntity instance and all identifiers for this entity equal the identifiers of the argument entity.ScheduledTaskHandlerEntity
getHandler()
Gets value for attribute handlerLong
getId()
Gets value for attribute idDate
getLastEnd()
Gets value for attribute lastEndDate
getLastExecution()
Gets value for attribute lastExecutionString
getLogReferenceID()
Gets value for attribute logReferenceIDCollection<ScheduledTaskLogEntity>
getLogs()
Gets value for attribute logsString
getName()
Gets value for attribute nameString
getParams()
Gets value for attribute paramsString
getSchedulePattern()
Gets value for attribute schedulePatternServerEntity
getServer()
Gets value for attribute serverTenantEntity
getTenant()
Gets value for attribute tenantint
hashCode()
Returns a hash code based on this entity's identifiers.boolean
isActive()
Gets value for attribute activeboolean
isEnabled()
Gets value for attribute enabledboolean
isError()
Gets value for attribute errorvoid
setActive(boolean active)
Sets value for attribute activevoid
setEnabled(boolean enabled)
Sets value for attribute enabledvoid
setError(boolean error)
Sets value for attribute errorvoid
setHandler(ScheduledTaskHandlerEntity handler)
Sets value for attribute handlervoid
setId(Long id)
Sets value for attribute idvoid
setLastEnd(Date lastEnd)
Sets value for attribute lastEndvoid
setLastExecution(Date lastExecution)
Sets value for attribute lastExecutionvoid
setLogReferenceID(String logReferenceID)
Sets value for attribute logReferenceIDvoid
setLogs(Collection<ScheduledTaskLogEntity> logs)
Sets value for attribute logsvoid
setName(String name)
Sets value for attribute namevoid
setParams(String params)
Sets value for attribute paramsvoid
setSchedulePattern(String schedulePattern)
Sets value for attribute schedulePatternvoid
setServer(ServerEntity server)
Sets value for attribute servervoid
setTenant(TenantEntity tenant)
Sets value for attribute tenant
-
-
-
Method Detail
-
getHandler
public ScheduledTaskHandlerEntity getHandler()
Gets value for attribute handler
-
setHandler
public void setHandler(ScheduledTaskHandlerEntity handler)
Sets value for attribute handler
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getName
public String getName()
Gets value for attribute name
-
setName
public void setName(String name)
Sets value for attribute name
-
getParams
public String getParams()
Gets value for attribute params
-
setParams
public void setParams(String params)
Sets value for attribute params
-
getSchedulePattern
public String getSchedulePattern()
Gets value for attribute schedulePattern
-
setSchedulePattern
public void setSchedulePattern(String schedulePattern)
Sets value for attribute schedulePattern
-
getLastExecution
public Date getLastExecution()
Gets value for attribute lastExecution
-
setLastExecution
public void setLastExecution(Date lastExecution)
Sets value for attribute lastExecution
-
getLastEnd
public Date getLastEnd()
Gets value for attribute lastEnd
-
setLastEnd
public void setLastEnd(Date lastEnd)
Sets value for attribute lastEnd
-
getLogReferenceID
public String getLogReferenceID()
Gets value for attribute logReferenceID
-
setLogReferenceID
public void setLogReferenceID(String logReferenceID)
Sets value for attribute logReferenceID
-
isError
public boolean isError()
Gets value for attribute error
-
setError
public void setError(boolean error)
Sets value for attribute error
-
getServer
public ServerEntity getServer()
Gets value for attribute server
-
setServer
public void setServer(ServerEntity server)
Sets value for attribute server
-
isActive
public boolean isActive()
Gets value for attribute active
-
setActive
public void setActive(boolean active)
Sets value for attribute active
-
isEnabled
public boolean isEnabled()
Gets value for attribute enabled
-
setEnabled
public void setEnabled(boolean enabled)
Sets value for attribute enabled
-
getTenant
public TenantEntity getTenant()
Gets value for attribute tenant
-
setTenant
public void setTenant(TenantEntity tenant)
Sets value for attribute tenant
-
getLogs
public Collection<ScheduledTaskLogEntity> getLogs()
Gets value for attribute logs
-
setLogs
public void setLogs(Collection<ScheduledTaskLogEntity> logs)
Sets value for attribute logs
-
equals
public boolean equals(Object object)
Returnstrue
if the argument is an ScheduledTaskEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-