diff options
Diffstat (limited to 'libjava/java/security')
41 files changed, 82 insertions, 82 deletions
diff --git a/libjava/java/security/AccessControlException.java b/libjava/java/security/AccessControlException.java index ff8b5a9..d7b1f29 100644 --- a/libjava/java/security/AccessControlException.java +++ b/libjava/java/security/AccessControlException.java @@ -1,5 +1,5 @@ /* AccessControlException.java -- Permission is denied - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -42,7 +42,7 @@ package java.security; * an attempt to perform an operation. This often keeps track of the * permission that was not granted. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @see AccessController * @status updated to 1.4 */ diff --git a/libjava/java/security/BasicPermission.java b/libjava/java/security/BasicPermission.java index fef0b87..2415b5b 100644 --- a/libjava/java/security/BasicPermission.java +++ b/libjava/java/security/BasicPermission.java @@ -1,5 +1,5 @@ /* BasicPermission.java -- implements a simple named permission - Copyright (C) 1998, 1999, 2002, 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -58,8 +58,8 @@ import java.util.Hashtable; * <p>This class ignores the action list. Subclasses can choose to implement * actions on top of this class if desired. * - * @author Aaron M. Renn <arenn@urbanophile.com> - * @author Eric Blake <ebb9@email.byu.edu> + * @author Aaron M. Renn (arenn@urbanophile.com) + * @author Eric Blake (ebb9@email.byu.edu) * @see Permission * @see Permissions * @see PermissionCollection diff --git a/libjava/java/security/DigestException.java b/libjava/java/security/DigestException.java index f5c8d62..bc67242 100644 --- a/libjava/java/security/DigestException.java +++ b/libjava/java/security/DigestException.java @@ -1,5 +1,5 @@ /* DigestException.java -- A generic message digest exception - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,7 +41,7 @@ package java.security; * This exception indicates that a generic message digest exception has * occurred. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @status updated to 1.4 */ public class DigestException extends GeneralSecurityException diff --git a/libjava/java/security/DigestInputStream.java b/libjava/java/security/DigestInputStream.java index 2ca9d1b..e8d2b63 100644 --- a/libjava/java/security/DigestInputStream.java +++ b/libjava/java/security/DigestInputStream.java @@ -1,5 +1,5 @@ /* DigestInputStream.java --- An Input stream tied to a message digest - Copyright (C) 1999, 2003, 2004 Free Software Foundation, Inc. + Copyright (C) 1999, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -52,7 +52,7 @@ import java.io.InputStream; * in the message digest. * * @version 0.0 - * @author Mark Benvenuto <ivymccough@worldnet.att.net> + * @author Mark Benvenuto (ivymccough@worldnet.att.net) */ public class DigestInputStream extends FilterInputStream { diff --git a/libjava/java/security/DigestOutputStream.java b/libjava/java/security/DigestOutputStream.java index caf059b..d95533c 100644 --- a/libjava/java/security/DigestOutputStream.java +++ b/libjava/java/security/DigestOutputStream.java @@ -1,5 +1,5 @@ /* DigestOutputStream.java --- An output stream tied to a message digest - Copyright (C) 1999, 2004 Free Software Foundation, Inc. + Copyright (C) 1999, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -52,7 +52,7 @@ import java.io.OutputStream; * message digest. * * @version 0.0 - * @author Mark Benvenuto <ivymccough@worldnet.att.net> + * @author Mark Benvenuto (ivymccough@worldnet.att.net) */ public class DigestOutputStream extends FilterOutputStream { diff --git a/libjava/java/security/GeneralSecurityException.java b/libjava/java/security/GeneralSecurityException.java index d1db3c5..8a26e85 100644 --- a/libjava/java/security/GeneralSecurityException.java +++ b/libjava/java/security/GeneralSecurityException.java @@ -1,5 +1,5 @@ /* GeneralSecurityException.java -- Common superclass of security exceptions - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -46,7 +46,7 @@ package java.security; * (<code>RuntimeException</code>), and <code>InvalidParamterException</code> * (<code>IllegalArgumentException</code>). * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @status updated to 1.4 */ public class GeneralSecurityException extends Exception diff --git a/libjava/java/security/Guard.java b/libjava/java/security/Guard.java index 2654ba7..8a2ab0f 100644 --- a/libjava/java/security/Guard.java +++ b/libjava/java/security/Guard.java @@ -1,5 +1,5 @@ /* Guard.java -- Check access to a guarded object - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,7 +41,7 @@ package java.security; * This interface specifies a mechanism for querying whether or not * access is allowed to a guarded object. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @see GuardedObject * @since 1.1 * @status updated to 1.4 diff --git a/libjava/java/security/GuardedObject.java b/libjava/java/security/GuardedObject.java index a4cdf74..5aeaf91 100644 --- a/libjava/java/security/GuardedObject.java +++ b/libjava/java/security/GuardedObject.java @@ -1,5 +1,5 @@ /* GuardedObject.java -- An object protected by a Guard - Copyright (C) 1998, 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -50,7 +50,7 @@ import java.io.Serializable; * <code>Guard</code>. If the <code>Guard</code> disallows access, an * exception will be thrown. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @since 1.1 * @status updated to 1.4 */ diff --git a/libjava/java/security/InvalidAlgorithmParameterException.java b/libjava/java/security/InvalidAlgorithmParameterException.java index 40f9530..5b2ada1 100644 --- a/libjava/java/security/InvalidAlgorithmParameterException.java +++ b/libjava/java/security/InvalidAlgorithmParameterException.java @@ -1,6 +1,6 @@ /* InvalidAlgorithmParameterException.java -- an invalid parameter to a security algorithm - Copyright (C) 2000, 2002 Free Software Foundation, Inc. + Copyright (C) 2000, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,7 +41,7 @@ package java.security; /** * Thrown for an invalid security algorithm parameter. * - * @author Warren Levy <warrenl@cygnus.com> + * @author Warren Levy (warrenl@cygnus.com) * @since 1.2 * @status updated to 1.4 */ diff --git a/libjava/java/security/InvalidKeyException.java b/libjava/java/security/InvalidKeyException.java index 373e862..ce6b8e5 100644 --- a/libjava/java/security/InvalidKeyException.java +++ b/libjava/java/security/InvalidKeyException.java @@ -40,7 +40,7 @@ package java.security; /** * Thrown for an invalid key. * - * @author Warren Levy <warrenl@cygnus.com> + * @author Warren Levy (warrenl@cygnus.com) * @status updated to 1.4 */ public class InvalidKeyException extends KeyException diff --git a/libjava/java/security/InvalidParameterException.java b/libjava/java/security/InvalidParameterException.java index 2208991..f54d819 100644 --- a/libjava/java/security/InvalidParameterException.java +++ b/libjava/java/security/InvalidParameterException.java @@ -41,7 +41,7 @@ package java.security; * Thrown when an invalid parameter is passed to a method of the JCA/JCE * engine classes. * - * @author Warren Levy <warrenl@cygnus.com> + * @author Warren Levy (warrenl@cygnus.com) * @status updated to 1.4 */ public class InvalidParameterException extends IllegalArgumentException diff --git a/libjava/java/security/Key.java b/libjava/java/security/Key.java index 195e50b..5e74be9 100644 --- a/libjava/java/security/Key.java +++ b/libjava/java/security/Key.java @@ -1,5 +1,5 @@ /* Key.java -- A abstract representation of a digital key - Copyright (C) 1998, 2000, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2000, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -47,7 +47,7 @@ import java.io.Serializable; * keys may be serialized. Keys are generally obtained through key generators, * including {@link KeyFactory}. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @see PublicKey * @see PrivateKey * @see KeyPair diff --git a/libjava/java/security/KeyException.java b/libjava/java/security/KeyException.java index 3b7d388..8d69a56 100644 --- a/libjava/java/security/KeyException.java +++ b/libjava/java/security/KeyException.java @@ -1,5 +1,5 @@ /* KeyException.java -- Thrown when there is a problem with a key - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -40,7 +40,7 @@ package java.security; /** * This exception is thrown when there is a problem with a key. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @see Key * @status updated to 1.4 */ diff --git a/libjava/java/security/KeyManagementException.java b/libjava/java/security/KeyManagementException.java index 52c2786..ca642ba 100644 --- a/libjava/java/security/KeyManagementException.java +++ b/libjava/java/security/KeyManagementException.java @@ -1,5 +1,5 @@ /* KeyManagementException.java -- an exception in key management - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,7 +41,7 @@ package java.security; * This exception is thrown whenever a problem related to the management of * security keys is encountered. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @see Key * @status updated to 1.4 */ diff --git a/libjava/java/security/KeyStoreException.java b/libjava/java/security/KeyStoreException.java index 369587a..8f45a55 100644 --- a/libjava/java/security/KeyStoreException.java +++ b/libjava/java/security/KeyStoreException.java @@ -1,5 +1,5 @@ /* KeyStoreException.java -- Indicates a problem with the key store - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -40,7 +40,7 @@ package java.security; /** * Indicates a problem with the key store. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @since 1.2 * @status updated to 1.4 */ diff --git a/libjava/java/security/MessageDigestSpi.java b/libjava/java/security/MessageDigestSpi.java index f2447f1..036392e 100644 --- a/libjava/java/security/MessageDigestSpi.java +++ b/libjava/java/security/MessageDigestSpi.java @@ -1,5 +1,5 @@ /* MessageDigestSpi.java --- The message digest service provider interface. - Copyright (C) 1999 Free Software Foundation, Inc. + Copyright (C) 1999, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -53,7 +53,7 @@ package java.security; @version 0.0 - @author Mark Benvenuto <ivymccough@worldnet.att.net> + @author Mark Benvenuto (ivymccough@worldnet.att.net) */ public abstract class MessageDigestSpi { diff --git a/libjava/java/security/NoSuchAlgorithmException.java b/libjava/java/security/NoSuchAlgorithmException.java index 31e0053..7d167dd 100644 --- a/libjava/java/security/NoSuchAlgorithmException.java +++ b/libjava/java/security/NoSuchAlgorithmException.java @@ -1,5 +1,5 @@ /* NoSuchAlgorithmException.java -- an algorithm was not available - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,7 +41,7 @@ package java.security; * This exception is thrown when the requested security algorithm is * not available * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @status updated to 1.4 */ public class NoSuchAlgorithmException extends GeneralSecurityException diff --git a/libjava/java/security/NoSuchProviderException.java b/libjava/java/security/NoSuchProviderException.java index 546b2dc..e676046 100644 --- a/libjava/java/security/NoSuchProviderException.java +++ b/libjava/java/security/NoSuchProviderException.java @@ -1,5 +1,5 @@ /* NoSuchProviderException.java -- thrown when a provider is not found - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,7 +41,7 @@ package java.security; * This exception is thrown when the requested security provider is * not available. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @status updated to 1.4 */ public class NoSuchProviderException extends GeneralSecurityException diff --git a/libjava/java/security/Permission.java b/libjava/java/security/Permission.java index 58702da..4310500 100644 --- a/libjava/java/security/Permission.java +++ b/libjava/java/security/Permission.java @@ -1,5 +1,5 @@ /* Permission.java -- The superclass for all permission objects - Copyright (C) 1998, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2001, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -61,7 +61,7 @@ import java.io.Serializable; * <p><code>Permission</code>'s must be immutable - do not change their * state after creation. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @see Permissions * @see PermissionCollection * @since 1.1 diff --git a/libjava/java/security/PermissionCollection.java b/libjava/java/security/PermissionCollection.java index 703767e..337a8fc 100644 --- a/libjava/java/security/PermissionCollection.java +++ b/libjava/java/security/PermissionCollection.java @@ -1,5 +1,5 @@ /* PermissionCollection.java -- A collection of permission objects - Copyright (C) 1998, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2001, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -67,8 +67,8 @@ import java.util.Enumeration; * in any type of collection unless it overrides that method to create its * own collection type. * - * @author Aaron M. Renn <arenn@urbanophile.com> - * @author Eric Blake <ebb9@email.byu.edu> + * @author Aaron M. Renn (arenn@urbanophile.com) + * @author Eric Blake (ebb9@email.byu.edu) * @see Permission * @see Permissions * @since 1.1 diff --git a/libjava/java/security/Permissions.java b/libjava/java/security/Permissions.java index ce63cc2..4d7c0f7 100644 --- a/libjava/java/security/Permissions.java +++ b/libjava/java/security/Permissions.java @@ -1,5 +1,5 @@ /* Permissions.java -- a collection of permission collections - Copyright (C) 1998, 2001, 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 1998, 2001, 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -53,8 +53,8 @@ import java.util.NoSuchElementException; * collection type which stores its permissions in a hash table will be * used. * - * @author Aaron M. Renn <arenn@urbanophile.com> - * @author Eric Blake <ebb9@email.byu.edu> + * @author Aaron M. Renn (arenn@urbanophile.com) + * @author Eric Blake (ebb9@email.byu.edu) * @since 1.1 */ public final class Permissions extends PermissionCollection diff --git a/libjava/java/security/Principal.java b/libjava/java/security/Principal.java index 2ac69b2..69990b8 100644 --- a/libjava/java/security/Principal.java +++ b/libjava/java/security/Principal.java @@ -1,5 +1,5 @@ /* Principal.java -- A security entity - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -42,7 +42,7 @@ package java.security; * This interface models an entity (such as a user or a certificate authority) * for the purposes of applying the Java security model. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @see X509Certificate * @since 1.1 * @status updated to 1.4 diff --git a/libjava/java/security/PrivateKey.java b/libjava/java/security/PrivateKey.java index 40b97f5..c4a628c 100644 --- a/libjava/java/security/PrivateKey.java +++ b/libjava/java/security/PrivateKey.java @@ -1,5 +1,5 @@ /* PrivateKey.java -- tagging interface for all private keys - Copyright (C) 1998, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2001, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -42,7 +42,7 @@ package java.security; * This interface specified no methods. In simply provides a common * super-interface for all algorithm specific private key values. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @see Key * @see PublicKey * @see Certificate diff --git a/libjava/java/security/PrivilegedActionException.java b/libjava/java/security/PrivilegedActionException.java index 633a872..d699abd 100644 --- a/libjava/java/security/PrivilegedActionException.java +++ b/libjava/java/security/PrivilegedActionException.java @@ -1,5 +1,5 @@ /* PrivilegedActionException.java -- wrap an exception in a privileged action - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -43,8 +43,8 @@ package java.security; * <code>AccessController.doPrivileged()</code> method. It wraps the * actual exception thrown in the privileged code. * - * @author Aaron M. Renn <arenn@urbanophile.com> - * @author Eric Blake <ebb9@email.byu.edu> + * @author Aaron M. Renn (arenn@urbanophile.com) + * @author Eric Blake (ebb9@email.byu.edu) * @see PrivilegedExceptionAction * @see AccessController#doPrivileged(PrivilegedExceptionAction) * @see AccessController#doPrivileged(PrivilegedExceptionAction, AccessControlContext) diff --git a/libjava/java/security/ProviderException.java b/libjava/java/security/ProviderException.java index eac3eb0..5b0e86e 100644 --- a/libjava/java/security/ProviderException.java +++ b/libjava/java/security/ProviderException.java @@ -1,5 +1,5 @@ /* ProviderException.java -- Generic security provider runtime exception - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,7 +41,7 @@ package java.security; * This exception indicates that a runtime problem was encounterd with * a security provider. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @status updated to 1.4 */ public class ProviderException extends RuntimeException diff --git a/libjava/java/security/PublicKey.java b/libjava/java/security/PublicKey.java index 81ab764..f2a331e 100644 --- a/libjava/java/security/PublicKey.java +++ b/libjava/java/security/PublicKey.java @@ -1,5 +1,5 @@ /* PublicKey.java -- tagging interface for all public keys - Copyright (C) 1998, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2001, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,7 +41,7 @@ package java.security; * This interface specified no methods. In simply provides a common * super-interface for all algorithm specific public key values. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @see Key * @see PrivateKey * @see Certificate diff --git a/libjava/java/security/SecureRandom.java b/libjava/java/security/SecureRandom.java index 5e410c0..5ae1fa2 100644 --- a/libjava/java/security/SecureRandom.java +++ b/libjava/java/security/SecureRandom.java @@ -1,5 +1,5 @@ /* SecureRandom.java --- Secure Random class implementation - Copyright (C) 1999, 2001, 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 1999, 2001, 2002, 2003, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -49,7 +49,7 @@ import java.util.Random; * keys and initialization vectors to the generation of random padding * bytes. * - * @author Mark Benvenuto <ivymccough@worldnet.att.net> + * @author Mark Benvenuto (ivymccough@worldnet.att.net) * @author Casey Marshall */ public class SecureRandom extends Random diff --git a/libjava/java/security/SecureRandomSpi.java b/libjava/java/security/SecureRandomSpi.java index 6831173..5218a98 100644 --- a/libjava/java/security/SecureRandomSpi.java +++ b/libjava/java/security/SecureRandomSpi.java @@ -1,5 +1,5 @@ /* SecureRandomSpi.java --- Secure Random Service Provider Interface - Copyright (C) 1999 Free Software Foundation, Inc. + Copyright (C) 1999, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -46,7 +46,7 @@ import java.io.Serializable; @since JDK 1.2 - @author Mark Benvenuto <ivymccough@worldnet.att.net> + @author Mark Benvenuto (ivymccough@worldnet.att.net) */ public abstract class SecureRandomSpi implements Serializable { diff --git a/libjava/java/security/SignatureException.java b/libjava/java/security/SignatureException.java index 8762b06..daccdf0 100644 --- a/libjava/java/security/SignatureException.java +++ b/libjava/java/security/SignatureException.java @@ -1,5 +1,5 @@ /* SignatureException.java -- Generic error in signature - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,7 +41,7 @@ package java.security; * This exception is thrown when a problem is encountered with a * digital signature. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @status updated to 1.4 */ public class SignatureException extends GeneralSecurityException diff --git a/libjava/java/security/SignatureSpi.java b/libjava/java/security/SignatureSpi.java index 3b6bdbc..3dd3e4f 100644 --- a/libjava/java/security/SignatureSpi.java +++ b/libjava/java/security/SignatureSpi.java @@ -49,7 +49,7 @@ import java.security.spec.AlgorithmParameterSpec; * cryptographic service provider who wishes to supply the implementation of a * particular signature algorithm. * - * @author Mark Benvenuto <ivymccough@worldnet.att.net> + * @author Mark Benvenuto (ivymccough@worldnet.att.net) * @since 1.2 * @see Signature */ diff --git a/libjava/java/security/SignedObject.java b/libjava/java/security/SignedObject.java index 0d9f733..f7ef0d5 100644 --- a/libjava/java/security/SignedObject.java +++ b/libjava/java/security/SignedObject.java @@ -123,7 +123,7 @@ import java.io.Serializable; * of signatures, resembling a chain of authorization and delegation.</li> * </ul> * - * @author Mark Benvenuto <ivymccough@worldnet.att.net> + * @author Mark Benvenuto (ivymccough@worldnet.att.net) * @since 1.2 * @see Signature */ diff --git a/libjava/java/security/Signer.java b/libjava/java/security/Signer.java index 425933a..a9e20d4 100644 --- a/libjava/java/security/Signer.java +++ b/libjava/java/security/Signer.java @@ -45,7 +45,7 @@ package java.security; * issue that should be handled by subclasses as appropriate to their intended * use.</p> * - * @author Mark Benvenuto <ivymccough@worldnet.att.net> + * @author Mark Benvenuto (ivymccough@worldnet.att.net) * @deprecated This class is no longer used. Its functionality has been replaced * by <code>java.security.KeyStore</code>, the <code>java.security.cert</code> * package, and <code>java.security.Principal</code>. diff --git a/libjava/java/security/UnrecoverableKeyException.java b/libjava/java/security/UnrecoverableKeyException.java index 3e93153..9708625 100644 --- a/libjava/java/security/UnrecoverableKeyException.java +++ b/libjava/java/security/UnrecoverableKeyException.java @@ -1,5 +1,5 @@ /* UnrecoverableKeyException.java -- Cannot recover a key from the key store - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,7 +41,7 @@ package java.security; * This exception is thrown when a key cannot be recovered from the key * store. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @since 1.2 * @status updated to 1.4 */ diff --git a/libjava/java/security/UnresolvedPermission.java b/libjava/java/security/UnresolvedPermission.java index c96bce0..c1f6f04 100644 --- a/libjava/java/security/UnresolvedPermission.java +++ b/libjava/java/security/UnresolvedPermission.java @@ -1,5 +1,5 @@ /* UnresolvedPermission.java -- Placeholder for unresolved permissions - Copyright (C) 1998, 2001, 2002, 2004 Free Software Foundation, Inc. + Copyright (C) 1998, 2001, 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -207,7 +207,7 @@ public final class UnresolvedPermission extends Permission * Implements the permission collection for unresolved permissions, and * obeys serialization of JDK. * - * @author Eric Blake <ebb9@email.byu.edu> + * @author Eric Blake (ebb9@email.byu.edu) */ class UnresolvedPermissionCollection extends PermissionCollection { diff --git a/libjava/java/security/acl/AclNotFoundException.java b/libjava/java/security/acl/AclNotFoundException.java index a843fac1..4462ffc 100644 --- a/libjava/java/security/acl/AclNotFoundException.java +++ b/libjava/java/security/acl/AclNotFoundException.java @@ -1,5 +1,5 @@ /* AclNotFoundException.java -- thrown when an ACL is not found - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,7 +41,7 @@ package java.security.acl; * This exception is thrown when a requested access control list (ACL) is * not found. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @status updated to 1.4 */ public class AclNotFoundException extends Exception diff --git a/libjava/java/security/acl/LastOwnerException.java b/libjava/java/security/acl/LastOwnerException.java index be28151..13e1390 100644 --- a/libjava/java/security/acl/LastOwnerException.java +++ b/libjava/java/security/acl/LastOwnerException.java @@ -1,5 +1,5 @@ /* LastOwnerException.java -- User attempted to delete last ACL owner - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,7 +41,7 @@ package java.security.acl; * This exception is thrown when an attempt is made to delete the last owner * of an access control list (ACL) * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @see Owner#deleteOwner(java.security.Principal, java.security.Principal) * @status updated to 1.4 */ diff --git a/libjava/java/security/acl/NotOwnerException.java b/libjava/java/security/acl/NotOwnerException.java index 8b2739d..7c3a6c4 100644 --- a/libjava/java/security/acl/NotOwnerException.java +++ b/libjava/java/security/acl/NotOwnerException.java @@ -1,5 +1,5 @@ /* NotOwnerException.java -- Attempt to modify an unowned ACL - Copyright (C) 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1998, 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -42,7 +42,7 @@ package java.security.acl; * the caller to be the owner of the access control list (ACL) when the caller * is in fact not the owner of the ACL. * - * @author Aaron M. Renn <arenn@urbanophile.com> + * @author Aaron M. Renn (arenn@urbanophile.com) * @status updated to 1.4 */ public class NotOwnerException extends Exception diff --git a/libjava/java/security/cert/CertPath.java b/libjava/java/security/cert/CertPath.java index 53f42e7..c57bd31 100644 --- a/libjava/java/security/cert/CertPath.java +++ b/libjava/java/security/cert/CertPath.java @@ -1,5 +1,5 @@ /* CertPath.java -- a sequence of certificates - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -54,7 +54,7 @@ import java.util.List; * the path is consolidated into a {@link CertPathRep}, which preserves the * data regardless of the underlying implementation of the path. * - * @author Eric Blake <ebb9@email.byu.edu> + * @author Eric Blake (ebb9@email.byu.edu) * @since 1.4 * @status updated to 1.4 */ @@ -63,7 +63,7 @@ public abstract class CertPath implements Serializable /** * The serialized representation of a path. * - * @author Eric Blake <ebb9@email.byu.edu> + * @author Eric Blake (ebb9@email.byu.edu) */ protected static class CertPathRep implements Serializable { diff --git a/libjava/java/security/cert/CertPathBuilderException.java b/libjava/java/security/cert/CertPathBuilderException.java index 7cfdb79..2db7d33 100644 --- a/libjava/java/security/cert/CertPathBuilderException.java +++ b/libjava/java/security/cert/CertPathBuilderException.java @@ -1,6 +1,6 @@ /* CertPathBuilderException.java -- wraps an exception during certificate path building - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -47,7 +47,7 @@ import java.security.GeneralSecurityException; * Indicates a problem while using a <code>CertPathBuilder</code>, wrapping * the lower exception. This class is not thread-safe. * - * @author Eric Blake <ebb9@email.byu.edu> + * @author Eric Blake (ebb9@email.byu.edu) * @see CertPathBuilder * @since 1.4 * @status updated to 1.4 diff --git a/libjava/java/security/cert/CertPathValidatorException.java b/libjava/java/security/cert/CertPathValidatorException.java index e7b40b8..9c7ad03 100644 --- a/libjava/java/security/cert/CertPathValidatorException.java +++ b/libjava/java/security/cert/CertPathValidatorException.java @@ -1,6 +1,6 @@ /* CertPathValidatorException.java -- wraps an exception during validation of a CertPath - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -48,7 +48,7 @@ import java.security.GeneralSecurityException; * it can store the path an index in that path that caused the problem. This * class is not thread-safe. * - * @author Eric Blake <ebb9@email.byu.edu> + * @author Eric Blake (ebb9@email.byu.edu) * @see CertPathValidator * @since 1.4 * @status updated to 1.4 diff --git a/libjava/java/security/cert/CertStoreException.java b/libjava/java/security/cert/CertStoreException.java index 7d7bd14..d157b1d 100644 --- a/libjava/java/security/cert/CertStoreException.java +++ b/libjava/java/security/cert/CertStoreException.java @@ -1,5 +1,5 @@ /* CertStoreException.java -- wraps an exception during certificate storage - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -47,7 +47,7 @@ import java.security.GeneralSecurityException; * <code>CertStore</code>, wrapping the lower exception. This class is not * thread-safe. * - * @author Eric Blake <ebb9@email.byu.edu> + * @author Eric Blake (ebb9@email.byu.edu) * @see CertStore * @since 1.4 * @status updated to 1.4 |