import java.io.*; public class ProxyObject extends Object { public String ProxyServer; // Proxy Server name or IP public String ProxyPort; // Port number public String username; public String password; // c o n s t r u c t o r public ProxyObject(String theServer, String thePort, String user, String pass) { super(); this.ProxyServer=theServer; this.ProxyPort=thePort; this.username=user; this.password=pass; } // end constructor // no-argument constructor public ProxyObject() { super(); this.ProxyServer=null; this.ProxyPort=null; this.username=null; this.password=null; } // end constructor } // class