All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.timefold.solver.quarkus.benchmark.it.domain.TestdataStringLengthShadowEntity Maven / Gradle / Ivy

package ai.timefold.solver.quarkus.benchmark.it.domain;

import java.util.ArrayList;
import java.util.List;

import ai.timefold.solver.core.api.domain.entity.PlanningEntity;
import ai.timefold.solver.core.api.domain.lookup.PlanningId;
import ai.timefold.solver.core.api.domain.variable.PlanningListVariable;

@PlanningEntity
public class TestdataStringLengthShadowEntity {

    @PlanningId
    private Long id;

    @PlanningListVariable
    private List values;

    public TestdataStringLengthShadowEntity() {
    }

    public TestdataStringLengthShadowEntity(Long id) {
        this.id = id;
        this.values = new ArrayList<>();
    }

    // ************************************************************************
    // Getters/setters
    // ************************************************************************

    public Long getId() {
        return id;
    }

    public List getValues() {
        return values;
    }

    public void setValues(List values) {
        this.values = values;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy