Remove Variable
The Remove Variable EIP allows you to remove a single variable.
Options
The Remove Variable eip supports 0 options, which are listed below.
Name | Description | Default | Type |
---|---|---|---|
description |
Sets the description of this node. |
String |
|
disabled |
Whether to disable this EIP from the route during build time. Once an EIP has been disabled then it cannot be enabled later at runtime. |
false |
Boolean |
name |
Required Name of variable to remove. |
String |
Example
We want to remove a variable with key "myVar" from the exchange:
- Java
-
from("seda:b") .removeVariable("myVar") .to("mock:result");
- XML
-
<route> <from uri="seda:b"/> <removeVariable name="myVar"/> <to uri="mock:result"/> </route>
If you want to remove all variables from
the Exchange then use
* as the name.
|