org.camunda.spin.Spin.S and org.camunda.spin.Spin.XML can be used as entry points. The latter offers strongly-typed access to Spin’s XML 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 XML as well as mapping XML to Java. Furthermore, the entry functions can be provided with Java objects that get implicitly converted to Spin’s intermediary XML format.
The following provides examples on how ASEE Flow Spin can be used in the process engine to work with XML data. For illustration purposes, let us assume that a String process variable customer containing XML 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:XML(...) 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 XML Variable Value
The native variable value for XML makes it possible to easily parse an XML string and wrap it inside an object without the need to have a class representing the XML. Suppose we want to save the XML inside a process variable for later use, we could do the following inside a JavaDelegate:SpinValues.xmlValue(...).create() will transform the string into a DomXML object wrapped by Spin.
If we wanted to retrieve the XML 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 XmlValue contains the wrapped DomXML object to represent the XML data. Calling getVariableTyped("name", false) results in XmlValue containing only the raw string, which is advantageous if you only need the string to pass it to, e.g., another API.
Serializing Process Variables
A Java object can be serialized using Spin’s built-in XML data format. Let us assume that there are two Java classes,com.example.Customer and com.example.Address. Spin’s default XML format relies on JAXB which is why JAXB annotations like @XmlRootElement, @XmlAttribute, and @XmlElement can be used to configure the serialization process. Note though that these annotations are not required. The classes look as follows:
Customer object that is serialized using Spin’s XML data format:
customer object. The invocation serializationDataFormat("application/xml") 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/xml is the name of the built-in XML 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 XML. The process engine configuration offers a property
defaultSerializationFormat. To configure default XML serialization, set this property to application/xml. Now, the invocation runtimeService.setVariable(processInstance.getId(), "customer", new Customer()) directly serializes the customer object as XML without explicit declaration of the format.