Class Job
- java.lang.Object
-
- org.optaplanner.examples.common.domain.AbstractPersistable
-
- org.optaplanner.examples.projectjobscheduling.domain.Job
-
public class Job extends AbstractPersistable
-
-
Field Summary
-
Fields inherited from class org.optaplanner.examples.common.domain.AbstractPersistable
id
-
-
Constructor Summary
Constructors Constructor Description Job()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ExecutionMode>getExecutionModeList()JobTypegetJobType()ProjectgetProject()List<Job>getSuccessorJobList()voidsetExecutionModeList(List<ExecutionMode> executionModeList)voidsetJobType(JobType jobType)voidsetProject(Project project)voidsetSuccessorJobList(List<Job> successorJobList)-
Methods inherited from class org.optaplanner.examples.common.domain.AbstractPersistable
getId, setId, toString
-
-
-
-
Method Detail
-
getProject
public Project getProject()
-
setProject
public void setProject(Project project)
-
getJobType
public JobType getJobType()
-
setJobType
public void setJobType(JobType jobType)
-
getExecutionModeList
public List<ExecutionMode> getExecutionModeList()
-
setExecutionModeList
public void setExecutionModeList(List<ExecutionMode> executionModeList)
-
-