Package org.marketcetera.trade.client
Class SendOrderResponse
- java.lang.Object
-
- org.marketcetera.trade.client.SendOrderResponse
-
public class SendOrderResponse extends Object
Contains the information relevant to a sent order.- Since:
- $Release$
- Version:
- $Id$
- Author:
- Colin DuPlantis
-
-
Constructor Summary
Constructors Constructor Description SendOrderResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetFailed()Get the failed value.StringgetMessage()Get the message value.OrderIDgetOrderId()Get the orderId value.voidsetFailed(boolean inFailed)Sets the failed value.voidsetMessage(String inMessage)Sets the message value.voidsetOrderId(OrderID inOrderId)Sets the orderId value.StringtoString()
-
-
-
Method Detail
-
getOrderId
public OrderID getOrderId()
Get the orderId value.- Returns:
- an
OrderIDvalue
-
setOrderId
public void setOrderId(OrderID inOrderId)
Sets the orderId value.- Parameters:
inOrderId- anOrderIDvalue
-
getMessage
public String getMessage()
Get the message value.- Returns:
- a
Stringvalue
-
setMessage
public void setMessage(String inMessage)
Sets the message value.- Parameters:
inMessage- aStringvalue
-
getFailed
public boolean getFailed()
Get the failed value.- Returns:
- a
booleanvalue
-
setFailed
public void setFailed(boolean inFailed)
Sets the failed value.- Parameters:
inFailed- abooleanvalue
-
-