Versions Compared

Key

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

...

Section
Column
width20%
<field-to-result>
Column
Copies a field to a service OUT attribute.
Code Block
xml
xml

<field-to-result field="foo" result-name="fooAttribute" />

Attributes

field

optional

The name of the field to copy from

result-name

optional

The name of the service OUT attribute to copy to

map-name

optional

The name of the map containing field


Info
titleProposed Changes
  • Currently, all attributes are optional. Require the field and result-name attributes.
  • Eliminate the map-name attribute.
Section
Column
width20%
<field-to-session>
Column
Copies a field to a servlet session attribute.
Code Block
xml
xml
<field-to-session field="foo" session-name="fooAttribute" />

Attributes

field

optional

The name of the field to copy from

session-name

optional

The name of the session attribute to copy to

map-name

optional

The name of the map containing field


Info
titleProposed Changes
  • Currently, all attributes are optional. Require the field and session-name attributes.
  • Eliminate the map-name attribute.
  • Deprecate and replace with a UEL expression.

...

Section
Column
width20%
<order-by>

Child element of <order-map-list>

Column
Defines a map key to sort on.
Code Block
xml
xml
<order-map-list list="fooList">
    <order-by field="fooKey" />
</order-map-list>

Attributes

field

optional

The name of the key to sort on


Section
Column
width20%
<<order
<order-map-
list>>
list>
Column
Sorts a list of maps.
Code Block
xml
xml
<order-map-list list="fooList">
    <order-by field="fooKey" />
</order-map-list>

Attributes

list

optional

The name of the list to be sorted


Child Elements

<order-by>

optional

Defines a map key to sort on


Info
titleProposed Changes
  • Currently, the list attribute is optional. Require the attribute.
  • Currently, the child elements are optional, and the operator throws an exception at run time when none are found. Require at least one child element.

...