1 7 8 package com.sun.corba.se.spi.ior; 9 10 import java.util.List ; 11 import java.util.Iterator ; 12 13 import com.sun.corba.se.spi.orb.ORBVersion ; 14 15 import com.sun.corba.se.spi.ior.iiop.GIOPVersion ; 16 import com.sun.corba.se.spi.ior.iiop.IIOPProfile ; 17 18 import com.sun.corba.se.spi.orb.ORB ; 19 20 23 public interface IOR extends List , Writeable, MakeImmutable 24 { 25 ORB getORB() ; 26 27 29 String getTypeId() ; 30 31 35 Iterator iteratorById( int id ) ; 36 37 40 String stringify() ; 41 42 45 org.omg.IOP.IOR getIOPIOR() ; 46 47 49 boolean isNil() ; 50 51 55 boolean isEquivalent(IOR ior) ; 56 57 61 IORTemplateList getIORTemplates() ; 62 63 67 IIOPProfile getProfile() ; 68 } 69 | Popular Tags |