Dynamic Data Masking
- Dynamic Data Masking 9.9
- All Products
import com.activebase.rule.*; public class ExampleJA { public static String execute(RuleContext ctx) { return "select 'OK' from dual"; } public static boolean match(RuleContext ctx) { String user = ctx.getSymbol(RuleContext.USERNAME).toUpperCase(); if ("SCOTT".equals(user)) { return true; } return false; }