|
Préférences
Moteurs de recherche
|
||||||||||||||||||||||||||||
| JavaTM 2 Platform Std. Ed. v1.4.2
java.rmi.server
|
|||||||||||||||||||||||||||||
| Field Summary | |
static int |
ACTIVATOR_ID
Object number for well-known ObjID of the activator. |
static int |
DGC_ID
Object number for well-known ObjID of
the distributed garbage collector. |
static int |
REGISTRY_ID
Object number for well-known ObjID of the registry. |
| Constructor Summary | |
ObjID()
Generates a unique object identifier. |
|
ObjID(int objNum)
Creates a "well-known" object identifier. |
|
| Method Summary | |
boolean |
equals(Object obj)
Compares the specified object with this ObjID for
equality. |
int |
hashCode()
Returns the hash code value for this object identifier, the object number. |
static ObjID |
read(ObjectInput in)
Constructs and returns a new ObjID instance by
unmarshalling a binary representation from an
ObjectInput instance. |
String |
toString()
Returns a string representation of this object identifier. |
void |
write(ObjectOutput out)
Marshals a binary representation of this ObjID to
an ObjectOutput instance. |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
public static final int REGISTRY_ID
ObjID of the registry.
public static final int ACTIVATOR_ID
ObjID of the activator.
public static final int DGC_ID
ObjID of
the distributed garbage collector.
| Constructor Detail |
public ObjID()
If the system property java.rmi.server.randomIDs
is defined to equal the string "true" (case insensitive),
then this constructor will use a cryptographically
strong random number generator to choose the object number of the
returned ObjID.
public ObjID(int objNum)
An ObjID created via this constructor will not
clash with any ObjIDs generated via the no-arg
constructor.
objNum - object number for well-known object identifier| Method Detail |
public void write(ObjectOutput out) throws IOException
ObjID to
an ObjectOutput instance.
Specifically, this method first invokes the given stream's
DataOutput.writeLong(long) method with this object
identifier's object number, and then it writes its address
space identifier by invoking its UID.write(DataOutput)
method with the stream.
out - the ObjectOutput instance to write
this ObjID to
IOException - if an I/O error occurs while performing
this operationpublic static ObjID read(ObjectInput in) throws IOException
ObjID instance by
unmarshalling a binary representation from an
ObjectInput instance.
Specifically, this method first invokes the given stream's
DataInput.readLong() method to read an object number,
then it invokes UID.read(DataInput) with the
stream to read an address space identifier, and then it
creates and returns a new ObjID instance that
contains the object number and address space identifier that
were read from the stream.
in - the ObjectInput instance to read
ObjID from
ObjID instance
IOException - if an I/O error occurs while performing
this operationpublic int hashCode()
Object.equals(java.lang.Object),
Hashtablepublic boolean equals(Object obj)
ObjID for
equality.
This method returns true if and only if the
specified object is an ObjID instance with the same
object number and address space identifier as this one.
obj - the object to compare this ObjID to
true if the given object is equivalent to
this one, and false otherwiseObject.hashCode(),
Hashtablepublic String toString()