919293949596979899100101
public static IdentifiableFactory makeAlternateIIOPAddressComponentFactory() { return new EncapsulationFactoryBase(TAG_ALTERNATE_IIOP_ADDRESS.value) { public Identifiable readContents( InputStream in ) { IIOPAddress addr = new IIOPAddressImpl( in ) ; Identifiable comp = new AlternateIIOPAddressComponentImpl( addr ) ; return comp ; } } ;
229230231232233234235
return new IIOPProfileTemplateImpl( orb, version, primary ) ; } public static IIOPAddress makeIIOPAddress( ORB orb, String host, int port ) { return new IIOPAddressImpl( orb, host, port ) ; }
234235236237238239240
return new IIOPAddressImpl( orb, host, port ) ; } public static IIOPAddress makeIIOPAddress( InputStream is ) { return new IIOPAddressImpl( is ) ; }