src/java.rmi/share/classes/java/rmi/server/UnicastRemoteObject.java
changeset 58609 fbfc72ec8e6b
parent 50774 662f66f9c9e2
equal deleted inserted replaced
58605:10db6989907f 58609:fbfc72ec8e6b
     1 /*
     1 /*
     2  * Copyright (c) 1996, 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   187     private int port = 0;
   187     private int port = 0;
   188 
   188 
   189     /**
   189     /**
   190      * @serial client-side socket factory (if any)
   190      * @serial client-side socket factory (if any)
   191      */
   191      */
       
   192     @SuppressWarnings("serial") // Not statically typed as Serializable
   192     private RMIClientSocketFactory csf = null;
   193     private RMIClientSocketFactory csf = null;
   193 
   194 
   194     /**
   195     /**
   195      * @serial server-side socket factory (if any) to use when
   196      * @serial server-side socket factory (if any) to use when
   196      * exporting object
   197      * exporting object
   197      */
   198      */
       
   199     @SuppressWarnings("serial") // Not statically typed as Serializable
   198     private RMIServerSocketFactory ssf = null;
   200     private RMIServerSocketFactory ssf = null;
   199 
   201 
   200     /* indicate compatibility with JDK 1.1.x version of class */
   202     /* indicate compatibility with JDK 1.1.x version of class */
   201     private static final long serialVersionUID = 4974527148936298033L;
   203     private static final long serialVersionUID = 4974527148936298033L;
   202 
   204