Interface IntegrationItemToMapConverter

All Known Implementing Classes:
DefaultIntegrationItemToMapConverter

public interface IntegrationItemToMapConverter
Converts IntegrationItem to its Map representation.
  • Method Summary

    Modifier and Type
    Method
    Description
    convert(IntegrationItem integrationItem)
    Generates Map of property name - values from the Integration Item in a hierarchical way; when nested referenced attributes are present, they will also be represented as a nested map.
  • Method Details

    • convert

      Map<String,Object> convert(IntegrationItem integrationItem)
      Generates Map of property name - values from the Integration Item in a hierarchical way; when nested referenced attributes are present, they will also be represented as a nested map.
      Parameters:
      integrationItem - Integration Item from a request that will be transformed into a Map representation.
      Returns:
      Map representation of the specified integration item. Keys of the map contain attribute names of the integration item and map values are values of the corresponding attributes. When integration item attribute value is a nested integration item or a collection of items, then that nested item(s) is converted to a Map(s).