diff options
Diffstat (limited to 'libjava/javax/security/sasl')
-rw-r--r-- | libjava/javax/security/sasl/Sasl.java | 11 | ||||
-rw-r--r-- | libjava/javax/security/sasl/SaslServerFactory.java | 4 |
2 files changed, 7 insertions, 8 deletions
diff --git a/libjava/javax/security/sasl/Sasl.java b/libjava/javax/security/sasl/Sasl.java index 334aac6..257198b 100644 --- a/libjava/javax/security/sasl/Sasl.java +++ b/libjava/javax/security/sasl/Sasl.java @@ -1,5 +1,5 @@ /* Sasl.java -- - Copyright (C) 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -221,7 +221,7 @@ public class Sasl * breaking into future sessions. The property contains <code>"true"</code> * if mechanisms that implement forward secrecy between sessions are * required; <code>"false"</code> if such mechanisms are not required. The - * default is <code>"false"</code>.</p> + * default is <code>"false"</code>. * * <p>The value of this constant is <code>"javax.security.sasl.policy.forward"</code>. * </p> @@ -233,7 +233,6 @@ public class Sasl * credentials are required. The property contains <code>"true"</code> if * mechanisms that pass client credentials are required; <code>"false"</code> * if such mechanisms are not required. The default is <code>"false"</code>. - * </p> * * <p>The value of this constant is <code>"javax.security.sasl.policy.credentials"</code>. * </p> @@ -280,7 +279,7 @@ public class Sasl // ------------------------------------------------------------------------- /** - * <p>Creates a {@link SaslClient} for the specified mechanism.</p> + * Creates a {@link SaslClient} for the specified mechanism. * * <p>This method uses the JCA Security Provider Framework, described in the * "Java Cryptography Architecture API Specification & Reference", for @@ -490,7 +489,7 @@ public class Sasl } /** - * <p>Creates a {@link SaslServer} for the specified mechanism.</p> + * Creates a {@link SaslServer} for the specified mechanism. * * <p>This method uses the JCA Security Provider Framework, described in the * "Java Cryptography Architecture API Specification & Reference", for @@ -521,7 +520,7 @@ public class Sasl * * <pre> * SaslServerFactory.DIGEST-MD5 com.wiz.sasl.digest.ServerFactory - * </pre></p> + * </pre> * * <p>See the "Java Cryptography Architecture API Specification & * Reference" for information about how to install and configure security diff --git a/libjava/javax/security/sasl/SaslServerFactory.java b/libjava/javax/security/sasl/SaslServerFactory.java index 1299634..d2f2791 100644 --- a/libjava/javax/security/sasl/SaslServerFactory.java +++ b/libjava/javax/security/sasl/SaslServerFactory.java @@ -48,8 +48,8 @@ import javax.security.auth.callback.CallbackHandler; * simultaneous requests. It must also have a public constructor that accepts * no arguments.</p> * - * This interface is not normally accessed directly by a server, which will use - * the {@link Sasl} static methods to create a {@link SaslServer} instance + * <p>This interface is not normally accessed directly by a server, which will + * use the {@link Sasl} static methods to create a {@link SaslServer} instance * instead. However, a particular environment may provide and install a new or * different <code>SaslServerFactory</code>.</p> * |