import java.io.*; public class SiteObject extends Object { public String URL; public String username; public String password; // c o n s t r u c t o r public SiteObject(String theSite, String thePort, String user, String pass) { super(); this.URL=theSite; this.username=user; this.password=pass; } // end constructor // no-argument constructor public SiteObject() { super(); this.URL=null; this.username=null; this.password=null; } // end constructor } // class