Lines Matching refs:id

57     private ActivationID id;
105 id = exportObject(this, location, data, restart, port);
157 id = exportObject(this, location, data, restart, port, csf, ssf);
174 * @param id activation identifier for the object
180 protected Activatable(ActivationID id, int port)
184 this.id = id;
185 exportObject(this, id, port);
202 * @param id activation identifier for the object
211 protected Activatable(ActivationID id, int port,
217 this.id = id;
218 exportObject(this, id, port, csf, ssf);
229 return id;
238 * @exception UnknownGroupException if group id in <code>desc</code>
248 ActivationID id =
250 return sun.rmi.server.ActivatableRef.getStub(desc, id);
255 * <code>id</code> is currently inactive. If the object is currently
266 * @param id the object's activation identifier
278 public static boolean inactive(ActivationID id)
281 return ActivationGroup.currentGroup().inactiveObject(id);
286 * associated with <code>id</code>. An object can no longer be
287 * activated via that <code>id</code>.
289 * @param id the object's activation identifier
290 * @exception UnknownObjectException if object (<code>id</code>) is unknown
295 public static void unregister(ActivationID id)
298 ActivationGroup.getSystem().unregisterObject(id);
427 ActivationID id = system.registerObject(desc);
433 exportObject(obj, id, port, csf, ssf);
440 system.unregisterObject(id);
454 ActivationGroup.currentGroup().activeObject(id, obj);
456 return id;
472 * @param id the object's activation identifier
479 ActivationID id,
483 return exportObject(obj, new ActivatableServerRef(id, port));
499 * @param id the object's activation identifier
509 ActivationID id,
515 return exportObject(obj, new ActivatableServerRef(id, port, csf, ssf));