我正在为 wso2is 编写一个简单的自定义用户存储管理器。
这是代码:
public class CustomJDBCUserStoreManager extends JDBCUserStoreManager {
private static Log log = LogFactory.getLog(CustomJDBCUserStoreManager.class);
public CustomJDBCUserStoreManager() {
}
public CustomJDBCUserStoreManager(org.wso2.carbon.user.api.RealmConfiguration realmConfig,
Map<String, Object> properties,
ClaimManager claimManager,
ProfileConfigurationManager profileManager,
UserRealm realm, Integer tenantId)
throws UserStoreException {
super(realmConfig, properties, claimManager, profileManager, realm, tenantId, false);
}
@Override
public void doAddUser(String userName, Object credential, String[] roleList,
Map<String, String> claims, String profileName,
boolean requirePasswordChange) throws UserStoreException {
String[] users = super.doListUsers( "*", -1);
int nUser = users.length;
if (nUser > 5){
throw new UserStoreException( "Reached the maximum number of global users" );
}else{
super.doAddUser( userName, credential, roleList, claims, profileName, requirePasswordChange );
}
}
}
代码工作。当我尝试从界面插入数量大于 5 的用户时,界面会给我异常消息“已达到全局用户的最大数量”。
但是,当我尝试通过 SCIM 在 5 个用户上添加用户时,我收到以下消息:
{"Errors":[{"description":"Error in adding the user: mrossi to the user store..","code":"500"}]}
好吧,在这一点上,我需要获得正确的消息异常“达到全局用户的最大数量”,而不是通用消息“添加用户时出错”。
有没有办法做到这一点?
谢谢。