PublicKey.java: Extend Key.
authorTom Tromey <tromey@redhat.com>
Mon, 4 Jun 2001 22:55:49 +0000 (22:55 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Mon, 4 Jun 2001 22:55:49 +0000 (22:55 +0000)
* java/security/PublicKey.java: Extend Key.
* java/security/PrivateKey.java: Extend Key.

From-SVN: r42886

libjava/ChangeLog
libjava/java/security/PrivateKey.java
libjava/java/security/PublicKey.java

index f2bfa79..66c657f 100644 (file)
@@ -1,3 +1,8 @@
+2001-06-04  Tom Tromey  <tromey@redhat.com>
+
+       * java/security/PublicKey.java: Extend Key.
+       * java/security/PrivateKey.java: Extend Key.
+
 2001-06-02  Anthony Green  <green@redhat.com>
 
        * java/lang/natRuntime.cc (_Jv_FindSymbolInExecutable): Provide an
index 7a736a5..a0bdd6b 100644 (file)
@@ -1,5 +1,5 @@
 /* PrivateKey.java -- "Super-interface" for all private keys
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2001 Free Software Foundation, Inc.
 
    This file is part of GNU Classpath.
 
@@ -35,6 +35,6 @@ package java.security;
    *
    * @author Aaron M. Renn (arenn@urbanophile.com)
  */
-public interface PrivateKey
+public interface PrivateKey extends Key
 {
 }
index a56ffe4..0127963 100644 (file)
@@ -1,5 +1,5 @@
 /* PublicKey.java -- "Super-interface" for all public keys
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2001 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -34,6 +34,6 @@ package java.security;
  *
  * @author Aaron M. Renn (arenn@urbanophile.com)
  */
-public interface PublicKey
+public interface PublicKey extends Key
 {
 }