org.optaplanner.examples.nurserostering.domain.contract.ContractLine 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.nurserostering.domain.contract;
import org.optaplanner.examples.common.domain.AbstractPersistable;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamInclude;
@XStreamAlias("ContractLine")
@XStreamInclude({
BooleanContractLine.class,
MinMaxContractLine.class
})
public abstract class ContractLine extends AbstractPersistable {
private Contract contract;
private ContractLineType contractLineType;
public Contract getContract() {
return contract;
}
public void setContract(Contract contract) {
this.contract = contract;
}
public ContractLineType getContractLineType() {
return contractLineType;
}
public void setContractLineType(ContractLineType contractLineType) {
this.contractLineType = contractLineType;
}
public abstract boolean isEnabled();
@Override
public String toString() {
return contract + "-" + contractLineType;
}
}