2004-10-22 Michael Koch <konqueror@gmx.de>

* java/lang/Math.java
	* java/lang/StackTraceElement.java
	* java/nio/Buffer.java
	* java/nio/ByteBuffer.java
	* java/nio/CharBuffer.java
	* java/nio/DoubleBuffer.java
	* java/nio/FloatBuffer.java
	* java/nio/IntBuffer.java
	* java/nio/LongBuffer.java
	* java/nio/ShortBuffer.java
	* java/nio/charset/Charset.java
	* java/rmi/server/RMIClassLoader.java
	* java/rmi/server/RMISocketFactory.java
	* java/security/Policy.java
	* java/text/ChoiceFormat.java
	* java/text/CollationElementIterator.java
	* java/text/DateFormat.java
	* java/text/DecimalFormat.java
	* java/text/DecimalFormatSymbols.java
	* java/text/MessageFormat.java
	* java/text/NumberFormat.java
	* java/text/RuleBasedCollator.java
	* java/text/SimpleDateFormat.java
	* java/util/BitSet.java
	* java/util/Calendar.java
	* java/util/Collections.java
	* java/util/IdentityHashMap.java
	* java/util/Locale.java
	* java/util/TreeMap.java
	* java/util/logging/LogRecord.java
	* java/util/logging/XMLFormatter.java
	* java/util/prefs/AbstractPreferences.java
	* java/util/prefs/Preferences.java
	* javax/crypto/interfaces/DHPrivateKey.java
	* javax/crypto/interfaces/DHPublicKey.java
	* javax/crypto/interfaces/PBEKey.java
	* javax/net/ssl/HandshakeCompletedEvent.java
	* javax/security/auth/Subject.java

From-SVN: r89454
This commit is contained in:
Michael Koch 2004-10-22 17:14:29 +00:00 committed by Michael Koch
parent 471854f82a
commit 0460023ee2
39 changed files with 201 additions and 180 deletions

View file

@ -57,9 +57,8 @@ import java.security.PrivateKey;
*/
public interface DHPrivateKey extends DHKey, PrivateKey
{
/** Compatible with JDK1.4. */
static final long serialVersionUID = 2211791113380396553L;
long serialVersionUID = 2211791113380396553L;
/**
* Returns the private value <i>x</i>.

View file

@ -56,9 +56,8 @@ import java.security.PublicKey;
*/
public interface DHPublicKey extends DHKey, PublicKey
{
/** Compatible with JDK1.4. */
static final long serialVersionUID = -6628103563352519193L;
long serialVersionUID = -6628103563352519193L;
/**
* Get the public value <i>y</i>.

View file

@ -51,9 +51,8 @@ import javax.crypto.SecretKey;
*/
public interface PBEKey extends SecretKey
{
/** Compatible with JDK1.4. */
static final long serialVersionUID = -1430015993304333921L;
long serialVersionUID = -1430015993304333921L;
/**
* Retruns the iteration count, or 0 if not specified.

View file

@ -52,7 +52,6 @@ import javax.security.cert.X509Certificate;
*/
public class HandshakeCompletedEvent extends java.util.EventObject
{
// Fields.
// -------------------------------------------------------------------
@ -60,7 +59,7 @@ public class HandshakeCompletedEvent extends java.util.EventObject
private static final long serialVersionUID = 7914963744257769778L;
/** The session. */
private transient final SSLSession session;
private final transient SSLSession session;
// Constructor.
// -------------------------------------------------------------------

View file

@ -59,12 +59,8 @@ import java.util.Iterator;
import java.util.LinkedList;
import java.util.Set;
/**
*
*/
public final class Subject implements Serializable
{
// Fields.
// -------------------------------------------------------------------------
@ -81,8 +77,8 @@ public final class Subject implements Serializable
*/
private boolean readOnly;
private transient final SecureSet pubCred;
private transient final SecureSet privCred;
private final transient SecureSet pubCred;
private final transient SecureSet privCred;
// Constructors.
// -------------------------------------------------------------------------
@ -371,7 +367,6 @@ public final class Subject implements Serializable
*/
private static class SecureSet extends AbstractSet implements Serializable
{
// Fields.
// -----------------------------------------------------------------------
@ -383,7 +378,7 @@ public final class Subject implements Serializable
private final Subject subject;
private final LinkedList elements;
private transient final int type;
private final transient int type;
// Constructors.
// -----------------------------------------------------------------------