Methods Summary |
---|
public boolean | equals(java.lang.Object obj)
if (!(obj instanceof JavaSerializationComponent)) {
return false;
}
JavaSerializationComponent other = (JavaSerializationComponent) obj;
return this.version == other.version;
|
public int | getId()
return ORBConstants.TAG_JAVA_SERIALIZATION_ID;
|
public int | hashCode()
return this.version;
|
public byte | javaSerializationVersion()
return this.version;
|
public static com.sun.corba.se.impl.ior.iiop.JavaSerializationComponent | singleton()
if (singleton == null) {
synchronized (JavaSerializationComponent.class) {
singleton =
new JavaSerializationComponent(Message.JAVA_ENC_VERSION);
}
}
return singleton;
|
public void | writeContents(org.omg.CORBA_2_3.portable.OutputStream os)
os.write_octet(version);
|