1 7 8 package com.sun.corba.se.spi.ior; 9 10 import org.omg.CORBA_2_3.portable.OutputStream ; 11 12 import com.sun.corba.se.spi.orb.ORBVersion ; 13 import com.sun.corba.se.spi.orb.ORB ; 14 15 import com.sun.corba.se.spi.protocol.CorbaServerRequestDispatcher ; 16 17 22 public interface ObjectKeyTemplate extends Writeable 23 { 24 public ORBVersion getORBVersion() ; 25 26 30 public int getSubcontractId(); 31 32 36 public int getServerId() ; 37 38 40 public String getORBId() ; 41 42 44 public ObjectAdapterId getObjectAdapterId() ; 45 46 51 public byte[] getAdapterId() ; 52 53 public void write(ObjectId objectId, OutputStream os); 54 55 public CorbaServerRequestDispatcher getServerRequestDispatcher( ORB orb, ObjectId id ) ; 56 } 57 | Popular Tags |