Class OrderAcceptEvent
- java.lang.Object
-
- com.caplin.motif.fx.trading.ResponderEvent<UserTrade>
-
- com.caplin.motif.fx.trading.orders.submission.event.OrderAcceptEvent
-
@Deprecated public class OrderAcceptEvent extends ResponderEvent<UserTrade>
Deprecated.An event to notify the client that the submission of the order or order strategy has been completed, and the order (or orders) is now active.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ACCEPT_EVENT
Deprecated.The name of the transition representing this event-
Fields inherited from class com.caplin.motif.fx.trading.ResponderEvent
fields
-
-
Constructor Summary
Constructors Constructor Description OrderAcceptEvent(java.lang.String orderID)
Deprecated.Creates an OrderAcceptEvent with the event name "Accept" and the provided order ID.OrderAcceptEvent(java.util.List<java.lang.String> orderIDs)
Deprecated.Creates an OrderAcceptEvent with the event name "Accept" and multiple order IDs.
-
Method Summary
-
Methods inherited from class com.caplin.motif.fx.trading.ResponderEvent
addField, addFields, equals, getEventName, getField, getFields, hashCode, toString
-
-
-
-
Field Detail
-
ACCEPT_EVENT
public static final java.lang.String ACCEPT_EVENT
Deprecated.The name of the transition representing this event- See Also:
- Constant Field Values
-
-
Constructor Detail
-
OrderAcceptEvent
public OrderAcceptEvent(java.lang.String orderID)
Deprecated.Creates an OrderAcceptEvent with the event name "Accept" and the provided order ID.- Parameters:
orderID
- The order id to send (usually the parent order ID).
-
OrderAcceptEvent
public OrderAcceptEvent(java.util.List<java.lang.String> orderIDs)
Deprecated.Creates an OrderAcceptEvent with the event name "Accept" and multiple order IDs. This is used when a multi-order strategy has been accepted.- Parameters:
orderIDs
- The order IDs of each of the orders in the strategy. The list must be ordered according to the semantics of the strategy, for example if the strategy is anIfDoneOCOStrategy
the first order ID in the list should be the parent order ID, followed by the two order IDs for the OCO part of the strategy. This list will be sent as a comma separated string on the field "OrderID".
-
-