Interface RFSSubmissionServerFieldSet
-
public interface RFSSubmissionServerFieldSet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description void
addField(java.lang.String fieldName, java.lang.Object value)
Adds a field to this eventdefault void
setBuySell(java.lang.Object value)
Deprecated.default void
setOneWayDirection(java.lang.Object value)
If the user is requesting a one way price, which direction should it be, BUY or SELL
-
-
-
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()
-
setBuySell
@Deprecated default void setBuySell(java.lang.Object value)
Deprecated.deprecated: Prefer OneWayDirection - If the user is requesting a one way price, which direction should it be, BUY or SELL- Parameters:
value
- The value to be set passed by i18n
-
setOneWayDirection
default void setOneWayDirection(java.lang.Object value)
If the user is requesting a one way price, which direction should it be, BUY or SELL- Parameters:
value
- The value to be set passed by i18n
-
-