org.drools.examples.decisiontable.Policy Maven / Gradle / Ivy
The newest version!
package org.drools.examples.decisiontable;
/**
* This represents a policy that a driver is applying for.
*
* Obviously in the real world, there are actuaries to mess things up, but lets just pretend there is
* some simple base price and discount that we can calculate with relatively simple rules !
*
* @author Michael Neale
*/
public class Policy {
private String type = "COMPREHENSIVE";
private boolean approved = false;
private int discountPercent = 0;
private int basePrice;
public boolean isApproved() {
return approved;
}
public void setApproved(boolean approved) {
this.approved = approved;
}
public int getDiscountPercent() {
return discountPercent;
}
public void setDiscountPercent(int discountPercent) {
this.discountPercent = discountPercent;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public void applyDiscount(int discount) {
discountPercent += discount;
}
public int getBasePrice() {
return basePrice;
}
public void setBasePrice(int basePrice) {
this.basePrice = basePrice;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy