Updated the Java Web Interface to allow passwords. If a user has no password
[spider.git] / spider-web / spiderframe.java
index ae6e12e8e10bf720dad8d50aaae8c10e9d3949c7..1630f9e7d2f393d988bb33f00207ac6891db4300 100755 (executable)
@@ -173,6 +173,10 @@ menubar.add(mailbox);
                Call = s;
        }
 
+    public void setPassword(String s) {
+        Password = s ;
+    }
+
        public void setPrefix(String s) {
                Prefix = s;
                }
@@ -207,6 +211,10 @@ menubar.add(mailbox);
                return Call;
        }
        
+    public String getPassword() {
+        return Password;
+    }
+    
        public String setPrefix(){
               return Prefix;
               }
@@ -563,6 +571,7 @@ menubar.add(mailbox);
        private Font InFont = new Font("Courier", Font.BOLD, 13);
        
        private String Call = new String("NOCALL");
+       private String Password = new String();
        private String Fullname = new String("NOBODY");
        private String Hostname = new String("localhost");
        private String Port = new String("3600");