Class Car
- java.lang.Object
-
- org.drools.examples.carinsurance.domain.Car
-
public class Car extends Object
-
-
Constructor Summary
Constructors Constructor Description Car()Car(String vehicleIdentificationNumber, CarType carType, boolean antiTheftDevice, BigDecimal value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CarTypegetCarType()BigDecimalgetValue()StringgetVehicleIdentificationNumber()booleanisAntiTheftDevice()voidsetAntiTheftDevice(boolean antiTheftDevice)voidsetCarType(CarType carType)voidsetValue(BigDecimal value)voidsetVehicleIdentificationNumber(String vehicleIdentificationNumber)
-
-
-
Constructor Detail
-
Car
public Car()
-
Car
public Car(String vehicleIdentificationNumber, CarType carType, boolean antiTheftDevice, BigDecimal value)
-
-
Method Detail
-
getVehicleIdentificationNumber
public String getVehicleIdentificationNumber()
-
setVehicleIdentificationNumber
public void setVehicleIdentificationNumber(String vehicleIdentificationNumber)
-
getCarType
public CarType getCarType()
-
setCarType
public void setCarType(CarType carType)
-
isAntiTheftDevice
public boolean isAntiTheftDevice()
-
setAntiTheftDevice
public void setAntiTheftDevice(boolean antiTheftDevice)
-
getValue
public BigDecimal getValue()
-
setValue
public void setValue(BigDecimal value)
-
-