From 26537b78028c2385162b1b8cdee0aea44cdbb6bc Mon Sep 17 00:00:00 2001 From: mkoch Date: Tue, 22 Feb 2005 18:58:53 +0000 Subject: 2005-02-22 Jeroen Frijters * java/io/Externalizable.java, java/io/Serializable.java (serialVersionUID): Removed. * java/rmi/server/RemoteObject.java, java/rmi/server/UID.java (serialVersionUID): Made private. * java/rmi/server/RemoteRef.java, java/rmi/server/ServerRef.java (serialVersionUID): Set proper value. * java/security/interfaces/DSAPrivateKey.java, java/security/interfaces/DSAPublicKey.java, java/security/interfaces/RSAMultiPrimePrivateCrtKey.java, java/security/interfaces/RSAPrivateCrtKey.java, java/security/interfaces/RSAPrivateKey.java, java/security/interfaces/RSAPublicKey.java, javax/crypto/SecretKey.java (serialVersionUID): Added. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95406 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/security/interfaces/DSAPrivateKey.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libjava/java/security/interfaces/DSAPrivateKey.java') diff --git a/libjava/java/security/interfaces/DSAPrivateKey.java b/libjava/java/security/interfaces/DSAPrivateKey.java index 4e6f13ddbe5..223db91e806 100644 --- a/libjava/java/security/interfaces/DSAPrivateKey.java +++ b/libjava/java/security/interfaces/DSAPrivateKey.java @@ -49,6 +49,11 @@ import java.security.PrivateKey; */ public interface DSAPrivateKey extends DSAKey, PrivateKey { + /** + * The version identifier used for serialization. + */ + long serialVersionUID = 7776497482533790279L; + /** * This method returns the value of the DSA private key */ -- cgit v1.2.1