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

org.optaplanner.quarkus.jackson.it.domain.ITestdataPlanningEntity Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
package org.optaplanner.quarkus.jackson.it.domain;

import org.optaplanner.core.api.domain.entity.PlanningEntity;
import org.optaplanner.core.api.domain.variable.PlanningVariable;

@PlanningEntity
public class ITestdataPlanningEntity {

    @PlanningVariable(valueRangeProviderRefs = "valueRange")
    private String value;

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

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy