Package org.marketcetera.trade
Interface OrderSummary
-
- All Known Subinterfaces:
MutableOrderSummary
public interface OrderSummaryProvides a summary of each order.- Since:
- $Release$
- Version:
- $Id$
- Author:
- Colin DuPlantis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAccount()Get the account value.UsergetActor()Get the order status actor value.BigDecimalgetAveragePrice()Get the average price value.BrokerIDgetBrokerId()Get the brokerId value.BigDecimalgetCumulativeQuantity()Get the cumulative quantity value.InstrumentgetInstrument()Get the instrument value.BigDecimalgetLastPrice()Get the last price value.BigDecimalgetLastQuantity()Get the last quantity value.BigDecimalgetLeavesQuantity()Get the leaves quantity value.OrderIDgetOrderId()Get the orderId value.BigDecimalgetOrderPrice()Get the order price value.BigDecimalgetOrderQuantity()Get the order quantity value.OrderStatusgetOrderStatus()Get the orderStatus value.ReportgetReport()Get the report value.OrderIDgetRootOrderId()Get the rootOrderId value.DategetSendingTime()Get the sending time value.SidegetSide()Get the side value.DategetTransactTime()Get the transact time value.UsergetViewer()Get the order status viewer value.
-
-
-
Method Detail
-
getOrderStatus
OrderStatus getOrderStatus()
Get the orderStatus value.- Returns:
- an
OrderStatusvalue
-
getReport
Report getReport()
Get the report value.- Returns:
- a
Reportvalue
-
getRootOrderId
OrderID getRootOrderId()
Get the rootOrderId value.- Returns:
- an
OrderIDvalue
-
getOrderId
OrderID getOrderId()
Get the orderId value.- Returns:
- an
OrderIDvalue
-
getCumulativeQuantity
BigDecimal getCumulativeQuantity()
Get the cumulative quantity value.- Returns:
- a
BigDecimalvalue
-
getAccount
String getAccount()
Get the account value.- Returns:
- a
Stringvalue
-
getBrokerId
BrokerID getBrokerId()
Get the brokerId value.- Returns:
- a
BrokerIDvalue
-
getSide
Side getSide()
Get the side value.- Returns:
- a
Sidevalue
-
getInstrument
Instrument getInstrument()
Get the instrument value.- Returns:
- an
Instrumentvalue
-
getAveragePrice
BigDecimal getAveragePrice()
Get the average price value.- Returns:
- a
BigDecimalvalue
-
getLastQuantity
BigDecimal getLastQuantity()
Get the last quantity value.- Returns:
- a
BigDecimalvalue
-
getLeavesQuantity
BigDecimal getLeavesQuantity()
Get the leaves quantity value.- Returns:
- a
BigDecimalvalue
-
getOrderQuantity
BigDecimal getOrderQuantity()
Get the order quantity value.- Returns:
- a
BigDecimalvalue
-
getLastPrice
BigDecimal getLastPrice()
Get the last price value.- Returns:
- a
BigDecimalvalue
-
getOrderPrice
BigDecimal getOrderPrice()
Get the order price value.- Returns:
- a
BigDecimalvalue
-
getSendingTime
Date getSendingTime()
Get the sending time value.- Returns:
- a
Datevalue
-
getTransactTime
Date getTransactTime()
Get the transact time value.- Returns:
- a
Datevalue
-
getActor
User getActor()
Get the order status actor value.- Returns:
- a
Uservalue
-
getViewer
User getViewer()
Get the order status viewer value.- Returns:
- a
Uservalue
-
-