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
This commit is contained in:
Jeroen Frijters 2005-02-22 18:58:53 +00:00 committed by Michael Koch
parent af43b1adeb
commit b22dcb1f30
12 changed files with 40 additions and 5 deletions

View file

@ -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
*/

View file

@ -49,6 +49,11 @@ import java.security.PublicKey;
*/
public interface DSAPublicKey extends DSAKey, PublicKey
{
/**
* The version identifier used for serialization.
*/
long serialVersionUID = 1234526332779022332L;
/**
* This method returns the value of the DSA public key
*/

View file

@ -54,6 +54,7 @@ public interface RSAMultiPrimePrivateCrtKey extends RSAPrivateKey
{
// Constants
// --------------------------------------------------------------------------
long serialVersionUID = 618058533534628008L;
// Methods
// --------------------------------------------------------------------------

View file

@ -49,6 +49,8 @@ import java.math.BigInteger;
*/
public interface RSAPrivateCrtKey extends RSAPrivateKey
{
long serialVersionUID = -5682214253527700368L;
/**
* Returns the public exponent for this key
*

View file

@ -49,6 +49,8 @@ import java.security.PrivateKey;
*/
public interface RSAPrivateKey extends PrivateKey, RSAKey
{
long serialVersionUID = 5187144804936595022L;
/**
* Returns the private exponent value for this key
*

View file

@ -49,6 +49,8 @@ import java.security.PublicKey;
*/
public interface RSAPublicKey extends PublicKey, RSAKey
{
long serialVersionUID = -8727434096241101194L;
/**
* Returns the public exponent value for this key
*