Versions Compared

Key

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

...

Section
Column
width20%
<map-to-map>
Column
Copies map entries to another map. If the target map is not found, a new map is created.
Code Block
xml
xml
<map-to-map map-name="foo" to-map-name="fooMap" />

Attributes

map-name

optional

The name of the map to copy from

to-map-name

optional

The name of the map to copy to


Info
titleProposed Changes
  • Currently, both attributes are optional. Require both attributes.
  • Rename the map-name attribute to from-field or from-map to make the syntax similar to other operators.
Section
Column
width20%
<now-date-to-env>
Column
Creates a java.sql.Date object that is set to the current system time.
Code Block
xml
xml

<now-date-to-env field="fooDate" />

Attributes

field

optional

The name of the field


Info
titleProposed Changes
  • Currently, the field attribute is optional. Require the attribute.
  • Deprecate and replace with UEL expression.
Section
Column
width20%
<now-timestamp-to-env>
Column
Creates a java.sql.Timestamp object that is set to the current system time.
Code Block
xml
xml

<now-timestamp-to-env field="fooDate" />

Attributes

field

optional

The name of the field


Info
titleProposed Changes
  • Currently, the field attribute is optional. Require the attribute.
  • Deprecate and replace with UEL expression.
Section
Column
width20%
<<order-map-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.
<property-to-field>
<request-parameters-to-list>

...