Remove Property
The Remove Property EIP allows you to remove a single property from the Exchange
.
Options
The Remove Property 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 property to remove. | String |
Example
We want to remove an exchange property with key "myProperty" from the exchange:
-
Java
-
XML
from("seda:b")
.removeProperty("myProperty")
.to("mock:result");
<route>
<from uri="seda:b"/>
<removeProperty name="myProperty"/>
<to uri="mock:result"/>
</route>
See Also
Camel provides the following EIPs for removing headers or exchange properties:
-
Remove Header: To remove a single header
-
Remove Headers: To remove one or more message headers
-
Remove Property: To remove a single exchange property
-
Remove Properties: To remove one or more exchange properties