org.camunda.spin.Spin.S and org.camunda.spin.Spin.JSON can be used as entry points. The latter offers strongly-typed access to Spin’s JSON API and is preferable when writing Java code. In scripting environments, only the S function is available. The returned Spin wrapper offers methods for manipulating and writing JSON as well as mapping JSON to Java. Furthermore, the entry functions can be provided with Java objects that get implicitly converted to Spin’s intermediary JSON format.
The following provides examples on how ASEE Flow Spin can be used in the process engine to work with JSON data. For illustration purposes, let us assume that a String process variable customer containing JSON exists. It has the following content:
Expression Language Integration
The Spin entry functions can be used wherever the process engine allows expression language. The following BPMN snippet shows a conditional sequence flow expression based on the customer’s post code:S(...) call and directly access the variable:
Scripting Integration
The following example is a script implemented in JavaScript. The script makes use of the Spin API to extract the address object from the customer, add a city name and set it as a process variable:Native JSON Variable Value
The native variable value for JSON makes it possible to easily parse a JSON string and wrap it inside an object without the need to have a class representing the JSON. Suppose we want to save the JSON inside a process variable for later use, we could do the following inside a JavaDelegate:SpinValues.jsonValue(...).create() will transform the string into a Jackson object wrapped by Spin.
If we wanted to retrieve the JSON in another JavaDelegate and, e.g., add some more information, we could do this easily:
execution.getVariableTyped() there are two options: serialized and deserialized.
Retrieving the variable deserialized by calling either getVariableTyped("name") or getVariableTyped("name", true), the JsonValue contains the wrapped Jackson object to represent the JSON data. Calling getVariableTyped("name", false) results in JsonValue containing only the raw string, which is advantageous if you only need the string, e.g., to pass it to another API.
Serializing Process Variables
A Java object can be serialized using Spin’s built-in JSON data format. Let us assume that there are two java classes,com.example.Customer and com.example.Address, with the following structure:
Customer object that is serialized using Spin’s JSON data format:
Customer object. The invocation serializationDataFormat("application/json") tells the process engine in which format the variable should be serialized. This name must match the name of a data format known to Spin. For example, application/json is the name of the built-in JSON data format.
Once the variable is set, its serialized value can be retrieved using the type variable API. For example:
Default Serialization FormatThe engine can be configured to persist all objects for which no explicit data format is specified as JSON. The process engine configuration offers a property
defaultSerializationFormat. To configure default JSON serialization, set this property to application/json. Now, the invocation runtimeService.setVariable(processInstance.getId(), "customer", new Customer()) directly serializes the customer object as JSON without explicit declaration of the format.