简体   繁体   English

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

[英]Which tables are used for getting orchestration information in OIM?

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

orchprocessorchevents是可用于检查编排细节的两个表

Sample Code to print the complete orchestration values at runtime.在运行时打印完整编排值的示例代码。

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

private String retrieveUserInfo(Orchestration orch, String attributeName) {私人字符串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;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM