Access to add and change pages is restricted. See: https://cwiki.apache.org/confluence/display/OFBIZ/Wiki+access

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Simple Method Cleanup Effort

Intro

The purpose of this effort is to make the element and attribute names used in simple-methods simpler and more consistent. Some ideas such as the old map-name and field-name pairs are no longer needed, and at the same time we want to simplify attribute names like "field-name" to just plain "field".

All changes done to the XSD files will be supported in the Java code that parses, along with the support for the deprecated and replaced elements and attributes. In this way old simple-method code will run fine, but with a LOT of parse warnings, and new stuff and old stuff will run together just fine.

Elements and Attributes Changes

  1. if-compare
    1. field-name -> field
    2. map-name -> deprecated
  2. if-compare-field
    1. field-name -> field
    2. map-name -> deprecated
    3. to-field-name -> to-field
    4. to-map-name -> deprecated
  3. if-empty
    1. field-name -> field
    2. map-name -> deprecated
  4. if-not-empty
    1. field-name -> field
    2. map-name -> deprecated
  • No labels