home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / net / PasswordAuthentication.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  441 b   |  20 lines

  1. package java.net;
  2.  
  3. public final class PasswordAuthentication {
  4.    private String userName;
  5.    private char[] password;
  6.  
  7.    public PasswordAuthentication(String var1, char[] var2) {
  8.       this.userName = var1;
  9.       this.password = (char[])var2.clone();
  10.    }
  11.  
  12.    public String getUserName() {
  13.       return this.userName;
  14.    }
  15.  
  16.    public char[] getPassword() {
  17.       return this.password;
  18.    }
  19. }
  20.