MapAllFilter
The filter MapAllFilter
is used to transfer all attributes from the input object to the output object without altering their names or values. A given set of attributes can be excluded by their name.
Configuration
Name | Type, usage constraints, defaults | Description |
---|---|---|
exclude | optional: paraList default: none type: list of strings | Name of attributes that are excluded from the mapping. |
Example
The following example shows how the MapAllFilter
can be used to map all data from the input object to the output object except the attribute named „id".
<dataFilter type="MapAllFilter">
<dp:paraList name="exclude">
<value>id</value>
</dp:paraList>
</dataFilter>