Standard Java restrictions

There are restrictions on the use of standard Java constructions due to security reasons. These restrictions are not known in the mapper's Java editor, so you cannot get any contextual help when writing standard Java code. If you use restricted standard Java code in a mapping, you get an error message in the mapper console when you generate or publish the mapping. The white list is linked in this document.

Example:

Code type Line
Old code:
System.out.println("Value=" + s);
New code:
logDebug("Value=" + s);