Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

There is a new auto-generated schema for each request type that supports outputting JSON payloads for request and response payloads. These can be adapted to provide structured request tracing.

Public Interfaces

The new auto-generated XYZDataJsonConverter exists schemas generate a converter class for each request/response type with the following signaturesuch as FetchRequestDataJsonConverter when ./gradlew processMessages is run. The signature looks as follows:

Code Block
titleMethod Signature of the auto-generated XYZDataJsonConverter
public class XYZDataJsonConverter {

	/* Converts the request/response data into a JsonNode*/
	public static JsonNode write(XYZData data, short version);

...