Package org.camunda.spin.spi
Interface DataFormatProvider
- All Known Implementing Classes:
DomXmlDataFormatProvider
,JacksonJsonDataFormatProvider
public interface DataFormatProvider
- Author:
- Daniel Meyer
-
Method Summary
Modifier and TypeMethodDescriptionDataFormat<?>
default DataFormat<?>
createInstance
(Map<String, Object> configurationProperties)
-
Method Details
-
getDataFormatName
String getDataFormatName()- Returns:
- the name of the data format provided by the implementation
-
createInstance
DataFormat<?> createInstance()- Returns:
- an instance of the data format provided by this implementation
-
createInstance
- Returns:
- an instance of the data format provided by this implementation configured using the passed configuration properties.
-