FileDocCategorySizeDatePackage
NewObjectKeyTemplateBase.javaAPI DocJava SE 5 API1583Fri Aug 26 14:54:22 BST 2005com.sun.corba.se.impl.ior

NewObjectKeyTemplateBase

public abstract class NewObjectKeyTemplateBase extends ObjectKeyTemplateBase

Fields Summary
Constructors Summary
public NewObjectKeyTemplateBase(com.sun.corba.se.spi.orb.ORB orb, int magic, int scid, int serverid, String orbid, com.sun.corba.se.spi.ior.ObjectAdapterId oaid)

	super( orb, magic, scid, serverid, orbid, oaid ) ;
	// subclass must set the version, since we don't have the object key here.

	if (magic != ObjectKeyFactoryImpl.JAVAMAGIC_NEWER)
	    throw wrapper.badMagic( new Integer( magic ) ) ;
    
Methods Summary
protected voidsetORBVersion(org.omg.CORBA_2_3.portable.InputStream is)

	ORBVersion version = ORBVersionFactory.create( is ) ;
	setORBVersion( version ) ;
    
public voidwrite(com.sun.corba.se.spi.ior.ObjectId objectId, org.omg.CORBA_2_3.portable.OutputStream os)

	super.write( objectId, os ) ;
	getORBVersion().write( os ) ;
    
public voidwrite(org.omg.CORBA_2_3.portable.OutputStream os)

	super.write( os ) ;
	getORBVersion().write( os ) ;