8232076: Suppress warnings on non-serializable non-transient instance fields java.naming
authordarcy
Wed, 09 Oct 2019 18:23:20 -0700
changeset 58531 9b40d05c9f66
parent 58530 865c889ce351
child 58532 b4f2e13d20ea
8232076: Suppress warnings on non-serializable non-transient instance fields java.naming Reviewed-by: lancea
src/java.naming/share/classes/com/sun/jndi/toolkit/ctx/Continuation.java
src/java.naming/share/classes/javax/naming/Binding.java
src/java.naming/share/classes/javax/naming/CannotProceedException.java
src/java.naming/share/classes/javax/naming/LinkException.java
src/java.naming/share/classes/javax/naming/NamingException.java
src/java.naming/share/classes/javax/naming/event/NamingEvent.java
src/java.naming/share/classes/javax/naming/spi/ResolveResult.java
--- a/src/java.naming/share/classes/com/sun/jndi/toolkit/ctx/Continuation.java	Thu Oct 10 01:10:26 2019 +0000
+++ b/src/java.naming/share/classes/com/sun/jndi/toolkit/ctx/Continuation.java	Wed Oct 09 18:23:20 2019 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -51,6 +51,7 @@
     /**
      * Whether links were encountered.
      */
+    @SuppressWarnings("serial") // Not statically typed as Serializable
     protected Object followingLink = null;
 
     /**
@@ -71,6 +72,7 @@
      * The last resolved context. Used to set the "AltNameCtx" in a
      * CannotProceedException.
      */
+    @SuppressWarnings("serial") // Not statically typed as Serializable
     protected Context resolvedContext = null;
 
     /**
--- a/src/java.naming/share/classes/javax/naming/Binding.java	Thu Oct 10 01:10:26 2019 +0000
+++ b/src/java.naming/share/classes/javax/naming/Binding.java	Wed Oct 09 18:23:20 2019 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -54,6 +54,7 @@
      * @see #getObject
      * @see #setObject
      */
+    @SuppressWarnings("serial") // Not statically typed as Serializable
     private Object boundObj;
 
     /**
--- a/src/java.naming/share/classes/javax/naming/CannotProceedException.java	Thu Oct 10 01:10:26 2019 +0000
+++ b/src/java.naming/share/classes/javax/naming/CannotProceedException.java	Wed Oct 09 18:23:20 2019 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -127,6 +127,7 @@
      * @see #altName
      * @see javax.naming.spi.ObjectFactory#getObjectInstance
      */
+    @SuppressWarnings("serial") // Not statically typed as Serializable
     protected Context altNameCtx = null;
 
     /**
--- a/src/java.naming/share/classes/javax/naming/LinkException.java	Thu Oct 10 01:10:26 2019 +0000
+++ b/src/java.naming/share/classes/javax/naming/LinkException.java	Wed Oct 09 18:23:20 2019 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -85,6 +85,7 @@
       * @see #getLinkResolvedObj
       * @see #setLinkResolvedObj
       */
+    @SuppressWarnings("serial") // Not statically typed as Serializable
     protected Object linkResolvedObj;
 
     /**
--- a/src/java.naming/share/classes/javax/naming/NamingException.java	Thu Oct 10 01:10:26 2019 +0000
+++ b/src/java.naming/share/classes/javax/naming/NamingException.java	Wed Oct 09 18:23:20 2019 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -79,6 +79,7 @@
       * @see #getResolvedObj
       * @see #setResolvedObj
       */
+    @SuppressWarnings("serial") // Not statically typed as Serializable
     protected Object resolvedObj;
     /**
      * Contains the remaining name that has not been resolved yet.
--- a/src/java.naming/share/classes/javax/naming/event/NamingEvent.java	Thu Oct 10 01:10:26 2019 +0000
+++ b/src/java.naming/share/classes/javax/naming/event/NamingEvent.java	Wed Oct 09 18:23:20 2019 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2000, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -122,6 +122,7 @@
      * Contains information about the change that generated this event.
      * @serial
      */
+    @SuppressWarnings("serial") // Not statically typed as Serializable
     protected Object changeInfo;
 
     /**
--- a/src/java.naming/share/classes/javax/naming/spi/ResolveResult.java	Thu Oct 10 01:10:26 2019 +0000
+++ b/src/java.naming/share/classes/javax/naming/spi/ResolveResult.java	Wed Oct 09 18:23:20 2019 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -50,6 +50,7 @@
      * Constructors should always initialize this.
      * @serial
      */
+    @SuppressWarnings("serial") // Not statically typed as Serializable
     protected Object resolvedObj;
     /**
      * Field containing the remaining name yet to be resolved.