Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note that it's usually an anti-pattern to use an <InputDataConnector>  with the allAttributes property, because this will only work correctly if all the inputs have the same number of values. If you have result sets (e.g. from LDAP) that don't satisfy this rule, just make sure to enumerate the attributes you need. This used to be handled with an extra configuration element called <SourceAttribute> but this is no longer needed because of the new dependency syntax, and is not supported in this version.

Reference

true

Localtabgroup

Localtab-live
titleSpecific XML Attributes

NameTypeDescription

velocityEngine

stringBean ID of an externally defined (using native Spring syntax) VelocityEngine, rarely needed

Localtab

active
-live
titleSpecific XML Elements


NameCardinalityDescription
<Template>
1Template to use

Localtab-live
titleCommon XML Attributes

Include Page
AttributeDefinitionCommonAttributes
AttributeDefinitionCommonAttributes

Localtab-live
titleCommon XML Elements


Include Page
AttributeDefinitionCommonChildElements
AttributeDefinitionCommonChildElements





Example

Code Block
languagexml
<AttributeDefinition id="template" xsi:type="Template">
    <InputAttributeDefinition ref="OtherAttr" />
    <InputDataConnector ref="myLdap" attributeNames="attrFromLdap" />
    <Template>${attrFromLdap}::${OtherAttr}</Template>
</AttributeDefinition>

...