SWIFT MT
Since Camel 3.20
The SWIFT MT data format is used to encode and decode SWIFT MT messages. The data format leverages the library Prowide Core to encode and decode SWIFT MT messages.
Options
The SWIFT MT dataformat supports 1 options, which are listed below.
Name | Default | Java Type | Description |
---|---|---|---|
|
| The flag indicating that messages must be marshalled in a JSON format. |
In Spring DSL, you configure the data format using this tag:
<camelContext>
<dataFormats>
<swiftMt id="swiftInJson" writeInJson="true"/>
</dataFormats>
...
</camelContext>
Then you can use it later by its reference:
<route>
<from uri="direct:startEncode" />
<marshal ref="swiftInJson" />
<to uri="mock:result" />
</route>
Most of the time, you won’t need to declare the data format if you use the default options. In that case, you can declare the data format inline as shown below:
<route>
<from uri="direct:startEncode" />
<marshal>
<swiftMt />
</marshal>
<to uri="mock:result" />
</route>
Marshal
In this example, we marshal the messages read from a JMS queue in SWIFT format before storing the result into a file.
from("jms://myqueue")
.marshal().swiftMt()
.to("file://data.bin");
In Spring DSL:
<from uri="jms://myqueue">
<marshal>
<swiftMt/>
</marshal>
<to uri="file://data.bin"/>
Unmarshal
The unmarshaller converts the input data into the concrete class of type com.prowidesoftware.swift.model.mt.AbstractMT
that best matches with the content of the message.
In this example, we unmarshal the content of a file to get SWIFT MT objects before processing them with the newOrder
processor.
from("file://data.bin")
.unmarshal().swiftMt()
.process("newOrder");
In Spring DSL:
<from uri="file://data.bin">
<unmarshal>
<swiftMt/>
</unmarshal>
<to uri="bean:newOrder"/>
Dependencies
To use SWIFT MT in your Camel routes, you need to add a dependency on camel-swift which implements this data format.
If you use Maven, you can add the following to your pom.xml:
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-swift</artifactId>
<version>x.x.x</version> <!-- use the same version as your Camel core version -->
</dependency>
Spring Boot Auto-Configuration
When using swiftMt with Spring Boot make sure to use the following Maven dependency to have support for auto configuration:
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-swift-starter</artifactId>
<version>x.x.x</version>
<!-- use the same version as your Camel core version -->
</dependency>
The component supports 7 options, which are listed below.
Name | Description | Default | Type |
---|---|---|---|
Whether to enable auto configuration of the swiftMt data format. This is enabled by default. | Boolean | ||
The flag indicating that messages must be marshalled in a JSON format. | false | Boolean | |
Whether to enable auto configuration of the swiftMx data format. This is enabled by default. | Boolean | ||
Refers to a specific configuration to use when unmarshalling an input stream to lookup from the registry. | String | ||
The type of MX message to produce when unmarshalling an input stream. If not set, it will be automatically detected from the namespace used. | String | ||
Refers to a specific configuration to use when marshalling a message to lookup from the registry. | String | ||
The flag indicating that messages must be marshalled in a JSON format. | false | Boolean |