org.optaplanner.examples.projectjobscheduling.domain.Project Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optaplanner-examples Show documentation
Show all versions of optaplanner-examples Show documentation
OptaPlanner solves planning problems.
This lightweight, embeddable planning engine implements powerful and scalable algorithms
to optimize business resource scheduling and planning.
This module contains the examples which demonstrate how to use it in a normal Java application.
package org.optaplanner.examples.projectjobscheduling.domain;
import java.util.List;
import org.optaplanner.examples.common.domain.AbstractPersistable;
import org.optaplanner.examples.common.persistence.jackson.JacksonUniqueIdGenerator;
import org.optaplanner.examples.common.swingui.components.Labeled;
import org.optaplanner.examples.projectjobscheduling.domain.resource.LocalResource;
import com.fasterxml.jackson.annotation.JsonIdentityInfo;
import com.fasterxml.jackson.annotation.JsonIgnore;
@JsonIdentityInfo(generator = JacksonUniqueIdGenerator.class)
public class Project extends AbstractPersistable implements Labeled {
private int releaseDate;
private int criticalPathDuration;
private List localResourceList;
private List jobList;
public Project() {
}
public Project(long id, int releaseDate, int criticalPathDuration) {
super(id);
this.releaseDate = releaseDate;
this.criticalPathDuration = criticalPathDuration;
}
public int getReleaseDate() {
return releaseDate;
}
public void setReleaseDate(int releaseDate) {
this.releaseDate = releaseDate;
}
public int getCriticalPathDuration() {
return criticalPathDuration;
}
public void setCriticalPathDuration(int criticalPathDuration) {
this.criticalPathDuration = criticalPathDuration;
}
public List getLocalResourceList() {
return localResourceList;
}
public void setLocalResourceList(List localResourceList) {
this.localResourceList = localResourceList;
}
public List getJobList() {
return jobList;
}
public void setJobList(List jobList) {
this.jobList = jobList;
}
// ************************************************************************
// Complex methods
// ************************************************************************
@JsonIgnore
public int getCriticalPathEndDate() {
return releaseDate + criticalPathDuration;
}
@Override
public String getLabel() {
return "Project " + id;
}
}