Package com.sun.corba.ee.spi.ior
Interface ObjectKeyFactory
-
- All Known Implementing Classes:
ObjectKeyFactoryImpl
public interface ObjectKeyFactory
Construct ObjectKey and ObjectKeyTemplate instances from their CDR-marshalled representation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectKey
create(byte[] key)
Create an ObjectKey from its octet sequence representation.ObjectKeyTemplate
createTemplate(InputStream is)
Create an ObjectKeyTemplate from its representation in an InputStream.
-
-
-
Method Detail
-
create
ObjectKey create(byte[] key)
Create an ObjectKey from its octet sequence representation.- Parameters:
key
- representation of key- Returns:
- created ObjectKey
-
createTemplate
ObjectKeyTemplate createTemplate(InputStream is)
Create an ObjectKeyTemplate from its representation in an InputStream.- Parameters:
is
- stream to create template from- Returns:
- create template
-
-