1

在 NetWeaver Portal 中,可以导入/导出角色。我想创建一个具有相同行为的自定义工具。如何使用 JAVA 代码实现这一点?我在 UME API 中找不到任何类或接口来执行此操作。

注意:自定义工具具有许多其他功能,并充当所有 JAVA 系统的集中门户。

4

1 回答 1

0

利用 SAP组合环境API 集,特别是安全 API

com.sap.security.api命名空间包含IUserAccountFactory工厂具有返回IUserAccount对象(对象数组)的getUserAccount (s) 方法。它具有完全满足您需求的getRoles方法。

addToRole方法一起,您可以实现角色的导出/导入。

您可以尝试使用此示例序列化特定用户的角色:

import java.io.*;
import com.sap.security.api.IUser;
import com.sap.security.api.UMFactory;
// getting current user
try {
IUser user = UMFactory.getAuthenticator().getLoggedInUser();

if (user == null) { throw new SecurityException("User is invalid"); }
// getting user roles
Iterator<String> roles = loggedInUser.getRoles(true);
// serializing roles
while (roles.hasNext()) {
            String roleId = roles.next();
            IRole role = UMFactory.getRoleFactory().getRole(roleId);

            FileOutputStream file = new FileOutputStream(filename); 
            ObjectOutputStream out = new ObjectOutputStream(file); 

            out.writeObject(role); 

            out.close(); 
            file.close();
            }
        } catch (Exception e) {
        logger.logError("[getAssignedRole] Error " + e.getMessage());
}
于 2019-06-03T11:40:32.243 回答