215216217218219220221222223224
public static IdentifiableFactory makeIIOPProfileTemplateFactory() { return new EncapsulationFactoryBase(TAG_INTERNET_IOP.value) { public Identifiable readContents( InputStream in ) { Identifiable result = new IIOPProfileTemplateImpl( in ) ; return result ; } } ; }
224225226227228229230
} public static IIOPProfileTemplate makeIIOPProfileTemplate( ORB orb, GIOPVersion version, IIOPAddress primary ) { return new IIOPProfileTemplateImpl( orb, version, primary ) ; }