Lines Matching defs:exportObject

44  * <p>For the constructors and static <code>exportObject</code> methods,
76 * #exportObject(Remote,String,MarshalledObject,boolean,int)
77 * exportObject} method with this object, and the specified location,
80 * <code>exportObject</code>.
105 id = exportObject(this, location, data, restart, port);
123 * #exportObject(Remote,String,MarshalledObject,boolean,int,RMIClientSocketFactory,RMIServerSocketFactory)
124 * exportObject} method with this object, and the specified location,
127 * identifier returned from the call to <code>exportObject</code>.
157 id = exportObject(this, location, data, restart, port, csf, ssf);
185 exportObject(this, id, port);
218 exportObject(this, id, port, csf, ssf);
315 * #exportObject(Remote,String,MarshalledObject,boolean,int,RMIClientSocketFactory,RMIServerSocketFactory)
316 * exportObject} method with the specified object, location, data,
339 public static ActivationID exportObject(Remote obj,
346 return exportObject(obj, location, data, restart, port, null, null);
375 * #exportObject(Remote,ActivationID,int,RMIClientSocketFactory,RMIServerSocketFactory)
376 * exportObject} method with the specified remote object, the
412 public static ActivationID exportObject(Remote obj,
433 exportObject(obj, id, port, csf, ssf);
464 * During activation, this <code>exportObject</code> method should
478 public static Remote exportObject(Remote obj,
483 return exportObject(obj, new ActivatableServerRef(id, port));
491 * During activation, this <code>exportObject</code> method should
508 public static Remote exportObject(Remote obj,
515 return exportObject(obj, new ActivatableServerRef(id, port, csf, ssf));
545 private static Remote exportObject(Remote obj, ActivatableServerRef sref)
553 return sref.exportObject(obj, null, false);