哪些表用于获取 OIM 中的编排信息?

Which tables are used for getting orchestration information in OIM?

我想跟踪用户的编排并验证其状态,我想知道哪些表用于相同的?

orchprocessorchevents是两个可以用来查看编排细节的表

用于在运行时打印完整编排值的示例代码。

String LASTNAME = retrieveUserInfo(orch, "Last Name");

private String retrieveUserInfo(Orchestration orch, String attributeName) {

    HashMap<String,Serializable> userAttributes = orch.getParameters();
    String attributeValue = (String) userAttributes.get(attributeName);
    
    System.out.println("Complete orch date ==> "+userAttributes.entrySet());
    
    return attributeValue;
}