Interface MMSalesInterventionQuoteServerFieldSet


  • public interface MMSalesInterventionQuoteServerFieldSet
    • 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 event
      default void setAskInterestRate​(java.lang.Object value)  
      default void setAskMargin​(java.lang.Object value)  
      default void setBidInterestRate​(java.lang.Object value)  
      default void setBidMargin​(java.lang.Object value)  
      default void setMarginVersion​(java.lang.Object value)  
      default void setPricingType​(java.lang.Object value)
      The type of pricing, either QUOTE or STREAM, QUOTE will send a send a singe quote to the client, while STREAM will stream rates to the client using the given margins.
    • 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 a String using BigDecimal.toPlainString()
      • setPricingType

        default void setPricingType​(java.lang.Object value)
        The type of pricing, either QUOTE or STREAM, QUOTE will send a send a singe quote to the client, while STREAM will stream rates to the client using the given margins.
        Parameters:
        value - The value to be set passed by i18n
      • setMarginVersion

        default void setMarginVersion​(java.lang.Object value)
      • setBidMargin

        default void setBidMargin​(java.lang.Object value)
      • setAskMargin

        default void setAskMargin​(java.lang.Object value)
      • setBidInterestRate

        default void setBidInterestRate​(java.lang.Object value)
      • setAskInterestRate

        default void setAskInterestRate​(java.lang.Object value)