summaryrefslogtreecommitdiff
path: root/libjava/java/security/interfaces/DSAPrivateKey.java
diff options
context:
space:
mode:
authorJeroen Frijters <jeroen@frijters.net>2005-02-22 18:58:53 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2005-02-22 18:58:53 +0000
commitb22dcb1f3071073b9521d72824eccad571c81613 (patch)
tree878d24f2bd1d297e4772cca4f727f6b91bc91c19 /libjava/java/security/interfaces/DSAPrivateKey.java
parentaf43b1adebde485322ecc3813a01b9e003412223 (diff)
2005-02-22 Jeroen Frijters <jeroen@frijters.net>
* 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. From-SVN: r95406
Diffstat (limited to 'libjava/java/security/interfaces/DSAPrivateKey.java')
-rw-r--r--libjava/java/security/interfaces/DSAPrivateKey.java5
1 files changed, 5 insertions, 0 deletions
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
@@ -50,6 +50,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
*/
BigInteger getX();