added client proxy settings + other fixes

This commit is contained in:
BetaSteward 2011-05-05 23:06:19 -04:00
parent ddeb0de911
commit 1fef6e6bb4
7 changed files with 263 additions and 60 deletions

View file

@ -60,15 +60,13 @@ public class Client implements CallbackClient {
private final static Logger logger = Logger.getLogger(Client.class);
private UUID clientId;
private String userName;
private MageFrame frame;
private Session session;
private int messageId = 0;
public Client(Session session, MageFrame frame, String userName) {
public Client(Session session, MageFrame frame) {
this.clientId = UUID.randomUUID();
this.userName = userName;
this.frame = frame;
this.session = session;