192193194195196197198199200201
public static IdentifiableFactory makeIIOPProfileFactory() { return new EncapsulationFactoryBase(TAG_INTERNET_IOP.value) { public Identifiable readContents( InputStream in ) { Identifiable result = new IIOPProfileImpl( in ) ; return result ; } } ; }
201202203204205206207
} public static IIOPProfile makeIIOPProfile( ORB orb, ObjectKeyTemplate oktemp, ObjectId oid, IIOPProfileTemplate ptemp ) { return new IIOPProfileImpl( orb, oktemp, oid, ptemp ) ; }
207208209210211212213
} public static IIOPProfile makeIIOPProfile( ORB orb, org.omg.IOP.TaggedProfile profile ) { return new IIOPProfileImpl( orb, profile ) ; }