Actions
Task #841
closedFix script sandbox priviledges
Start date:
11/20/2017
Due date:
% Done:
100%
Estimated time:
Owner:
Description
When running script which calls another script (e.g. when script is referenced from attribute transformation), no additional allowed classes are populated to that script. This effectively forbids programmer to convert value to another data type (e.g. from String received from connector to byte array).
Example:
Using script bellow in attribute transformation results in error saying that script is using not allowed class [B even though that class is specified in script permissions.
if (!attributeValue) { return null } return attributeValue.getBytes()
Actions