Interface AmendServerFieldSet
-
public interface AmendServerFieldSet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
addField(java.lang.String fieldName, java.lang.Object value)
Adds a field to this eventdefault void
setClientAgreementDateTime(java.lang.Object value)
Optional field that can be used to display the client agreement date time in a trade amend.default void
setSpotAskMargin(java.lang.Object value)
This field represents the spot margin that the sales user has selected.default void
setSpotBidMargin(java.lang.Object value)
This field represents the spot margin that the sales user has selected.default void
setSwapAskMargin(java.lang.Object value)
This field represents the swap margin to be applied to the bid side: L*_FwdAskMargin + L2_FwdBidMargin.default void
setSwapBidMargin(java.lang.Object value)
This field represents the swap margin to be applied to the bid side: L*_FwdAskMargin + L2_FwdBidMargin.
-
-
-
Method Detail
-
addField
void addField(java.lang.String fieldName, java.lang.Object value)
Adds a field to this event- Parameters:
fieldName
- The name of the field to add.value
- The value of the field to add. If the value is a BigDecimal then it will be converted to aString
usingBigDecimal.toPlainString()
-
setSpotBidMargin
default void setSpotBidMargin(java.lang.Object value)
This field represents the spot margin that the sales user has selected. It should be sent as a raw value, and unformatted.- Parameters:
value
- The value to be set passed by i18n
-
setSpotAskMargin
default void setSpotAskMargin(java.lang.Object value)
This field represents the spot margin that the sales user has selected. It should be sent as a raw value, and unformatted.- Parameters:
value
- The value to be set passed by i18n
-
setSwapBidMargin
default void setSwapBidMargin(java.lang.Object value)
This field represents the swap margin to be applied to the bid side: L*_FwdAskMargin + L2_FwdBidMargin.- Parameters:
value
- The value to be set passed by i18n
-
setSwapAskMargin
default void setSwapAskMargin(java.lang.Object value)
This field represents the swap margin to be applied to the bid side: L*_FwdAskMargin + L2_FwdBidMargin.- Parameters:
value
- The value to be set passed by i18n
-
setClientAgreementDateTime
default void setClientAgreementDateTime(java.lang.Object value)
Optional field that can be used to display the client agreement date time in a trade amend. This field can also be included in the Amend's EditableFields list to allow the user to edit it. This field can be used to allow the user to specify a client agreement time in scenarios where the execution time might have been different.- Parameters:
value
- The value to be set passed by i18n
-
-