|
@@ -70,11 +70,14 @@ public class SSOFilter implements Filter {
|
|
|
return;
|
|
|
}
|
|
|
JSONObject userJson = JSONObject.fromObject(userStr);
|
|
|
+ System.out.println(userJson);
|
|
|
|
|
|
ImUser imUser = new ImUser();
|
|
|
imUser.setId(userJson.get("id").toString());
|
|
|
imUser.setName(userJson.get("name").toString());
|
|
|
imUser.setBranchid(userJson.get("branchid").toString());
|
|
|
+ imUser.setLogonname(userJson.get("logonname").toString());
|
|
|
+ imUser.setAuthpwd(userJson.get("authpwd").toString());
|
|
|
|
|
|
// User user = new User();
|
|
|
// user.setId(String.valueOf(b)userJson.get(""));
|