package x; import org.omg.CORBA_2_3.portable.OutputStream; import com.sun.corba.se.spi.ior.ObjectId; public class MyObjectId implements ObjectId { @Override public byte[] getId() { return new byte[] {1,2,3,4}; } @Override public void write(OutputStream arg0) { } } .