Package org.drools.examples.broker.model
Class Company
- java.lang.Object
-
- org.drools.examples.broker.model.Company
-
public class Company extends Object
A POJO for a company
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetCurrentPrice()doublegetDelta()StringgetName()doublegetPreviousPrice()StringgetSymbol()voidsetCurrentPrice(double current)voidsetName(String name)voidsetSymbol(String symbol)
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getSymbol
public String getSymbol()
-
setSymbol
public void setSymbol(String symbol)
-
getCurrentPrice
public double getCurrentPrice()
-
setCurrentPrice
public void setCurrentPrice(double current)
-
getPreviousPrice
public double getPreviousPrice()
-
getDelta
public double getDelta()
-
-