diff options
Diffstat (limited to 'libjava/classpath/javax/net')
9 files changed, 25 insertions, 25 deletions
diff --git a/libjava/classpath/javax/net/ssl/CertPathTrustManagerParameters.java b/libjava/classpath/javax/net/ssl/CertPathTrustManagerParameters.java index b6dc135..c23d654 100644 --- a/libjava/classpath/javax/net/ssl/CertPathTrustManagerParameters.java +++ b/libjava/classpath/javax/net/ssl/CertPathTrustManagerParameters.java @@ -1,4 +1,4 @@ -/* CertPathTrustManagerParameters.java -- +/* CertPathTrustManagerParameters.java -- Copyright (C) 2006 Free Software Foundation, Inc. This file is a part of GNU Classpath. diff --git a/libjava/classpath/javax/net/ssl/KeyManagerFactory.java b/libjava/classpath/javax/net/ssl/KeyManagerFactory.java index 33f2fda9..d951951 100644 --- a/libjava/classpath/javax/net/ssl/KeyManagerFactory.java +++ b/libjava/classpath/javax/net/ssl/KeyManagerFactory.java @@ -134,7 +134,7 @@ public class KeyManagerFactory /** * Create an instance of the named key manager factory, from the first * provider that implements it. - * + * * @param algorithm The type of key manager factory to get. * @return An appropriate implementation of that algoritm. * @throws NoSuchAlgorithmException If no provider implements the requested @@ -164,7 +164,7 @@ public class KeyManagerFactory /** * Create an instance of the named key manager factory, from the named * provider. - * + * * @param algorithm The type of key manager factory to get. * @param provider The name of the provider to get the implementation from. * @return An appropriate implementation of that algorithm. @@ -190,7 +190,7 @@ public class KeyManagerFactory /** * Create an instance of the named key manager factory, from the given * provider. - * + * * @param algorithm The type of key manager factory to get. * @param provider The provider to get the implementation from. * @return An appropriate implementation of that algorithm. diff --git a/libjava/classpath/javax/net/ssl/KeyStoreBuilderParameters.java b/libjava/classpath/javax/net/ssl/KeyStoreBuilderParameters.java index 2aa665e..26b6142 100644 --- a/libjava/classpath/javax/net/ssl/KeyStoreBuilderParameters.java +++ b/libjava/classpath/javax/net/ssl/KeyStoreBuilderParameters.java @@ -1,4 +1,4 @@ -/* KeyStoreBuilderParameters.java -- +/* KeyStoreBuilderParameters.java -- Copyright (C) 2006 Free Software Foundation, Inc. This file is a part of GNU Classpath. diff --git a/libjava/classpath/javax/net/ssl/SSLContext.java b/libjava/classpath/javax/net/ssl/SSLContext.java index dcc8508..9a6e9a5 100644 --- a/libjava/classpath/javax/net/ssl/SSLContext.java +++ b/libjava/classpath/javax/net/ssl/SSLContext.java @@ -94,7 +94,7 @@ public class SSLContext /** * Get an instance of a context for the specified protocol from the first * provider that implements it. - * + * * @param protocol The name of the protocol to get a context for. * @return The new context. * @throws NoSuchAlgorithmException If no provider implements the given @@ -124,7 +124,7 @@ public class SSLContext /** * Get an instance of a context for the specified protocol from the named * provider. - * + * * @param protocol The name of the protocol to get a context for. * @param provider The name of the provider to get the implementation from. * @return The new context. @@ -149,7 +149,7 @@ public class SSLContext /** * Get an instance of a context for the specified protocol from the specified * provider. - * + * * @param protocol The name of the protocol to get a context for. * @param provider The name of the provider to get the implementation from. * @return The new context. diff --git a/libjava/classpath/javax/net/ssl/SSLEngine.java b/libjava/classpath/javax/net/ssl/SSLEngine.java index efab972..2ba7bb6 100644 --- a/libjava/classpath/javax/net/ssl/SSLEngine.java +++ b/libjava/classpath/javax/net/ssl/SSLEngine.java @@ -73,7 +73,7 @@ public abstract class SSLEngine this.peerPort = peerPort; } - + /** * Begin, or restart, the SSL handshake. @@ -359,8 +359,8 @@ public abstract class SSLEngine * negative, or if 'length+offset' is greater than 'sinks.length'. */ public abstract SSLEngineResult unwrap (ByteBuffer source, - ByteBuffer[] sinks, int offset, - int length) + ByteBuffer[] sinks, int offset, + int length) throws javax.net.ssl.SSLException; /** @@ -436,7 +436,7 @@ public abstract class SSLEngine * negative, or if 'length+offset' is greater than 'sources.length'. */ public abstract SSLEngineResult wrap (ByteBuffer[] sources, int offset, - int length, ByteBuffer sink) + int length, ByteBuffer sink) throws SSLException; } diff --git a/libjava/classpath/javax/net/ssl/SSLEngineResult.java b/libjava/classpath/javax/net/ssl/SSLEngineResult.java index 0d6a435..4d15258 100644 --- a/libjava/classpath/javax/net/ssl/SSLEngineResult.java +++ b/libjava/classpath/javax/net/ssl/SSLEngineResult.java @@ -1,4 +1,4 @@ -/* SSLEngineResult.java -- +/* SSLEngineResult.java -- Copyright (C) 2006 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -64,7 +64,7 @@ public class SSLEngineResult * <code>null</code>, or if either integer is negative. */ public SSLEngineResult (Status status, HandshakeStatus handshakeStatus, - int bytesConsumed, int bytesProduced) + int bytesConsumed, int bytesProduced) { if (status == null) throw new IllegalArgumentException ("'status' may not be null"); @@ -80,7 +80,7 @@ public class SSLEngineResult this.bytesProduced = bytesProduced; } - + /** * An enumeration of possible general states. @@ -143,7 +143,7 @@ public class SSLEngineResult NEED_UNWRAP } - + /** * Returns the number of bytes consumed by the previous operation. @@ -188,7 +188,7 @@ public class SSLEngineResult public String toString () { return (super.toString () + " [ status: " + status + "; handshakeStatus: " - + handshakeStatus + "; bytesConsumed: " + bytesConsumed - + "; bytesProduced: " + bytesProduced + " ]"); + + handshakeStatus + "; bytesConsumed: " + bytesConsumed + + "; bytesProduced: " + bytesProduced + " ]"); } } diff --git a/libjava/classpath/javax/net/ssl/SSLException.java b/libjava/classpath/javax/net/ssl/SSLException.java index 3213b0b..c726717 100644 --- a/libjava/classpath/javax/net/ssl/SSLException.java +++ b/libjava/classpath/javax/net/ssl/SSLException.java @@ -45,7 +45,7 @@ import java.io.IOException; * exception is thrown instead of this exception. * * @author Casey Marshall (rsdio@metastatic.org) - * + * * @since 1.4 */ public class SSLException extends IOException @@ -64,7 +64,7 @@ public class SSLException extends IOException { super(message); } - + /** * Create a new instance with a descriptive error message and * a cause. @@ -77,7 +77,7 @@ public class SSLException extends IOException super(message); initCause(cause); } - + /** * Create a new instance with a cause. * @param cause the cause diff --git a/libjava/classpath/javax/net/ssl/TrustManagerFactory.java b/libjava/classpath/javax/net/ssl/TrustManagerFactory.java index f868ae7..e08501a 100644 --- a/libjava/classpath/javax/net/ssl/TrustManagerFactory.java +++ b/libjava/classpath/javax/net/ssl/TrustManagerFactory.java @@ -96,7 +96,7 @@ public class TrustManagerFactory /** * Returns an instance of a trust manager factory for the given algorithm from * the first provider that implements it. - * + * * @param algorithm The name of the algorithm to get. * @return The instance of the trust manager factory. * @throws NoSuchAlgorithmException If no provider implements the given @@ -126,7 +126,7 @@ public class TrustManagerFactory /** * Returns an instance of a trust manager factory for the given algorithm from * the named provider. - * + * * @param algorithm The name of the algorithm to get. * @param provider The name of the provider to get the instance from. * @return The instance of the trust manager factory. @@ -152,7 +152,7 @@ public class TrustManagerFactory /** * Returns an instance of a trust manager factory for the given algorithm from * the specified provider. - * + * * @param algorithm The name of the algorithm to get. * @param provider The provider to get the instance from. * @return The instance of the trust manager factory. diff --git a/libjava/classpath/javax/net/ssl/X509ExtendedKeyManager.java b/libjava/classpath/javax/net/ssl/X509ExtendedKeyManager.java index ccd146f..0e7c4d4 100644 --- a/libjava/classpath/javax/net/ssl/X509ExtendedKeyManager.java +++ b/libjava/classpath/javax/net/ssl/X509ExtendedKeyManager.java @@ -1,4 +1,4 @@ -/* X509ExtendedKeyManager.java -- +/* X509ExtendedKeyManager.java -- Copyright (C) 2006 Free Software Foundation, Inc. This file is a part of GNU Classpath. |