I encounter problem of retreive data of room properties. here is my coding.
private LinkedHashMap<String, User> userMap = new LinkedHashMap<String, User>();
User user = new User("from hong kong"); userMap.put(Util.userName, user);
HashMap<String, Object> table = new HashMap<String, Object>(); table.put("userMap", userMap); theClient.updateRoomProperties(roomId, table, null);
After I update the room properties, I call the getLiveRoomInfo method and i can retreive the room property named "userMap", but it returns userMap={hhh=fyp.caspar.taxifeesharing.realtimematching.User@4393e3c8}. How can i retrieve the field of the object user?