ai.timefold.solver.quarkus.jackson.it.domain.ITestdataPlanningSolution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timefold-solver-quarkus-jackson-integration-test Show documentation
Show all versions of timefold-solver-quarkus-jackson-integration-test Show documentation
Quarkus integration tests for Timefold with Jackson
The newest version!
package ai.timefold.solver.quarkus.jackson.it.domain;
import java.util.List;
import ai.timefold.solver.core.api.domain.solution.PlanningEntityCollectionProperty;
import ai.timefold.solver.core.api.domain.solution.PlanningScore;
import ai.timefold.solver.core.api.domain.solution.PlanningSolution;
import ai.timefold.solver.core.api.domain.valuerange.ValueRangeProvider;
import ai.timefold.solver.core.api.score.buildin.simple.SimpleScore;
@PlanningSolution
public class ITestdataPlanningSolution {
@ValueRangeProvider(id = "valueRange")
private List valueList;
@PlanningEntityCollectionProperty
private List entityList;
@PlanningScore
private SimpleScore score;
// ************************************************************************
// Getters/setters
// ************************************************************************
public List getValueList() {
return valueList;
}
public void setValueList(List valueList) {
this.valueList = valueList;
}
public List getEntityList() {
return entityList;
}
public void setEntityList(List entityList) {
this.entityList = entityList;
}
public SimpleScore getScore() {
return score;
}
public void setScore(SimpleScore score) {
this.score = score;
}
}