Interface IncomingBindings


public interface IncomingBindings

This interface provides typed key-value-pair mappings for the incoming message process.

Since:
10.0.138
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the string value to which the specified key is mapped, or null if this map contains no mapping for the key.
    Removes the mapping for a key if it is present
    setString(String key, String value)
    Associates the specified string value with the specified key.
  • Method Details

    • getString

      String getString(String key)
      Returns the string value to which the specified key is mapped, or null if this map contains no mapping for the key.
      Parameters:
      key - the key whose associated string value is to be returned
      Returns:
      the value to which the specified key is mapped, or null if this map contains no mapping for the key
      Throws:
      ClassCastException - if the key not is of type string
      Since:
      10.0.138
    • setString

      IncomingBindings setString(String key, String value)
      Associates the specified string value with the specified key.
      Parameters:
      key - key with which the specified value is to be associated
      value - string value to be associated with the specified key
      Returns:
      this
      Throws:
      ClassCastException - if the class of the specified key or value prevents it from being stored.
      Since:
      10.0.138
    • remove

      Object remove(String key)
      Removes the mapping for a key if it is present
      Parameters:
      key - key whose mapping is to be removed from the map
      Returns:
      the previous value associated with key, or null if there was no mapping for key.
      Since:
      10.0.138