Actual interface required to implement data type transformer?

I was reading at https://docs.camunda.org/manual/latest/user-guide/dmn-engine/data-types/#implement-a-custom-data-type , and I noticed that the text refers to “implement a new DmnDataTypeTransformer”, implying that “DmnDataTypeTransformer” is an interface type, but the code sample refers to implementing a “DataTypeTransformer” interface. However, when I then went to https://docs.camunda.org/javadoc/camunda-bpm-platform/7.3/ I didn’t see EITHER of these types in the list. Is the doc wrong, or is the javadoc wrong, or neither somehow?

Hey David,

you are right the example references a old interface name, which was renamed.
We will change this.

You can’t find the classes in the referenced JavaDoc, since the classes exist not till 7.4.
So you can find them in the JavaDoc of version 7.4 and above, see for example here.

Greets,
Chris

1 Like