Interface IntegrationItemToMapConverter
-
- All Known Implementing Classes:
DefaultIntegrationItemToMapConverter
public interface IntegrationItemToMapConverterConverts IntegrationItem to its Map representation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.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.
-
-
-
Method Detail
-
convert
java.util.Map<java.lang.String,java.lang.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).
-
-