Package com.sun.corba.ee.spi.ior
Class IdentifiableBase
- java.lang.Object
-
- com.sun.corba.ee.spi.ior.IdentifiableBase
-
- All Implemented Interfaces:
Identifiable
,Writeable
,WriteContents
- Direct Known Subclasses:
IIOPProfileImpl
,TaggedComponentBase
public abstract class IdentifiableBase extends java.lang.Object implements Identifiable, WriteContents
Provide support for properly reading and writing Identifiable objects that are also encapsulations (tagged profiles and components).
-
-
Constructor Summary
Constructors Constructor Description IdentifiableBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
write(OutputStream os)
Write the data for this object as a CDR encapsulation.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.sun.corba.ee.spi.ior.Identifiable
getId
-
Methods inherited from interface com.sun.corba.ee.spi.ior.WriteContents
writeContents
-
-
-
-
Method Detail
-
write
public final void write(OutputStream os)
Write the data for this object as a CDR encapsulation. This is used for writing tagged components and profiles. These data types must be written out as encapsulations, which means that we need to first write the data out to an encapsulation stream, then extract the data and write it to os as an array of octets.
-
-