Class SubmitTradeEvent
- java.lang.Object
-
- com.caplin.generated.motif.fx.trading.drawdown.events.client.SubmitTradeEvent
-
- All Implemented Interfaces:
DrawdownSubmissionClientFieldSet
,LeggedMessage
,LeggedMessageRoot
,Message
public class SubmitTradeEvent extends java.lang.Object implements DrawdownSubmissionClientFieldSet, LeggedMessageRoot
A single event acting on a DrawdownTrade.
The event may be client generated and received through the respective TradeListener interface or it may be generated by custom code to be sent to the client.
A DrawdownTradeEvent is created using the
DrawdownTrade
it relates to.A DrawdownTradeEvent typically represents a message received from the client or sent by the server. A message contains a set of fields and values which can be accessed using the
Message.getField(String)
method.
-
-
Constructor Summary
Constructors Constructor Description SubmitTradeEvent(com.caplin.trading.TradeEvent tradeEvent)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description com.caplin.trading.TradeEvent
getBackingEvent()
java.util.Map<java.lang.String,java.lang.String>
getFields()
Gets the fields of this TradeEvent as a MapDrawdownSubmissionLegClientFieldSetChild
getLegById(int legId)
Deprecated.DrawdownSubmissionLegClientFieldSetChild
getLegById(java.lang.String legId)
Deprecated.DrawdownSubmissionLegClientFieldSetChild
getLegByIndex(int index)
Deprecated.java.util.List<DrawdownSubmissionLegClientFieldSetChild>
getLegs()
Deprecated.java.util.List<DrawdownSubmissionLegClientFieldSetChild>
getLLegs()
int
getNumLegs()
Deprecated.java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.caplin.generated.motif.fx.trading.fieldsets.DrawdownSubmissionClientFieldSet
getLLegById, getLLegById, getLLegByIndex, getNumLLegs, getTradeID
-
Methods inherited from interface com.caplin.motif.datasource.LeggedMessageRoot
getId, getIndex
-
-
-
-
Method Detail
-
getFields
public java.util.Map<java.lang.String,java.lang.String> getFields()
Gets the fields of this TradeEvent as a Map
-
getBackingEvent
public com.caplin.trading.TradeEvent getBackingEvent()
- Returns:
- Get the
TradeEvent
backing this event
-
getLLegs
public java.util.List<DrawdownSubmissionLegClientFieldSetChild> getLLegs()
- Specified by:
getLLegs
in interfaceDrawdownSubmissionClientFieldSet
- Returns:
- Get all the L legs for this trade
-
getLegs
@Deprecated public java.util.List<DrawdownSubmissionLegClientFieldSetChild> getLegs()
Deprecated.- Returns:
- Get all the L legs for this trade
This method is deprecated, please use
getLLegs()
-
getLegById
@Deprecated public DrawdownSubmissionLegClientFieldSetChild getLegById(int legId)
Deprecated.- Returns:
- Get the L leg for the given id
This method is deprecated, please use
DrawdownSubmissionClientFieldSet.getLLegById(int)
-
getLegById
@Deprecated public DrawdownSubmissionLegClientFieldSetChild getLegById(java.lang.String legId)
Deprecated.- Returns:
- Get the L leg for the given id
This method is deprecated, please use
DrawdownSubmissionClientFieldSet.getLLegById(String)
-
getLegByIndex
@Deprecated public DrawdownSubmissionLegClientFieldSetChild getLegByIndex(int index)
Deprecated.- Returns:
- Get the L leg for the given index
This method is deprecated, please use
DrawdownSubmissionClientFieldSet.getLLegByIndex(int)
-
getNumLegs
@Deprecated public int getNumLegs()
Deprecated.- Returns:
- Get the number of L legs for this trade
This method is deprecated, please use
DrawdownSubmissionClientFieldSet.getNumLLegs()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-