aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/net/PasswordAuthentication.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/net/PasswordAuthentication.java')
-rw-r--r--libjava/java/net/PasswordAuthentication.java126
1 files changed, 59 insertions, 67 deletions
diff --git a/libjava/java/net/PasswordAuthentication.java b/libjava/java/net/PasswordAuthentication.java
index 0c4faa5..97554e3 100644
--- a/libjava/java/net/PasswordAuthentication.java
+++ b/libjava/java/net/PasswordAuthentication.java
@@ -1,5 +1,5 @@
/* PasswordAuthentication.java -- Container class for username/password pairs
- Copyright (C) 1998,2000 Free Software Foundation, Inc.
+ Copyright (C) 1998, 2000, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -45,72 +45,64 @@ package java.net;
*/
public final class PasswordAuthentication
{
-
-/*************************************************************************/
-
-/*
- * Instance Variables
- */
-
-/**
- * The username
- */
-private String username;
-
-/**
- * The password
- */
-private char[] password;
-
-/*************************************************************************/
-
-/*
- * Constructors
- */
-
-/**
- * Creates a new PasswordAuthentication object from the specified username
- * and password.
- *
- * @param username The username for this object
- * @param password The password for this object
- */
-public
-PasswordAuthentication(String username, char[] password)
-{
- this.username = username;
- this.password = password;
-}
-
-/*************************************************************************/
-
-/*
- * Instance Methods
- */
-
-/**
- * Returns the username associated with this object
- *
- * @return The username
- */
-public String
-getUserName()
-{
- return(username);
-}
-
-/*************************************************************************/
-
-/**
- * Returns the password associated with this object
- *
- * @return The password
- */
-public char[]
-getPassword()
-{
- return(password);
-}
+ /*
+ * Instance Variables
+ */
+
+ /**
+ * The username
+ */
+ private String username;
+
+ /**
+ * The password
+ */
+ private char[] password;
+
+ /*************************************************************************/
+
+ /*
+ * Constructors
+ */
+
+ /**
+ * Creates a new <code>PasswordAuthentication</code> object from the
+ * specified username and password.
+ *
+ * @param username The username for this object
+ * @param password The password for this object
+ */
+ public PasswordAuthentication(String username, char[] password)
+ {
+ this.username = username;
+ this.password = password;
+ }
+
+ /*************************************************************************/
+
+ /*
+ * Instance Methods
+ */
+
+ /**
+ * Returns the username associated with this object
+ *
+ * @return The username
+ */
+ public String getUserName()
+ {
+ return(username);
+ }
+
+ /**
+ * Returns the password associated with this object
+ *
+ * @return The password
+ */
+ public char[] getPassword()
+ {
+ return(password);
+ }
} // class PasswordAuthentication