本文整理汇总了Java中com.sun.corba.se.spi.orb.ORB.getTaggedProfileTemplateFactoryFinder方法的典型用法代码示例。如果您正苦于以下问题:Java ORB.getTaggedProfileTemplateFactoryFinder方法的具体用法?Java ORB.getTaggedProfileTemplateFactoryFinder怎么用?Java ORB.getTaggedProfileTemplateFactoryFinder使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.sun.corba.se.spi.orb.ORB
的用法示例。
在下文中一共展示了ORB.getTaggedProfileTemplateFactoryFinder方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initIORFinders
import com.sun.corba.se.spi.orb.ORB; //导入方法依赖的package包/类
private void initIORFinders( ORB orb )
{
IdentifiableFactoryFinder profFinder =
orb.getTaggedProfileFactoryFinder() ;
profFinder.registerFactory( IIOPFactories.makeIIOPProfileFactory() ) ;
IdentifiableFactoryFinder profTempFinder =
orb.getTaggedProfileTemplateFactoryFinder() ;
profTempFinder.registerFactory(
IIOPFactories.makeIIOPProfileTemplateFactory() ) ;
IdentifiableFactoryFinder compFinder =
orb.getTaggedComponentFactoryFinder() ;
compFinder.registerFactory(
IIOPFactories.makeCodeSetsComponentFactory() ) ;
compFinder.registerFactory(
IIOPFactories.makeJavaCodebaseComponentFactory() ) ;
compFinder.registerFactory(
IIOPFactories.makeORBTypeComponentFactory() ) ;
compFinder.registerFactory(
IIOPFactories.makeMaxStreamFormatVersionComponentFactory() ) ;
compFinder.registerFactory(
IIOPFactories.makeAlternateIIOPAddressComponentFactory() ) ;
compFinder.registerFactory(
IIOPFactories.makeRequestPartitioningComponentFactory() ) ;
compFinder.registerFactory(
IIOPFactories.makeJavaSerializationComponentFactory());
// Register the ValueFactory instances for ORT
IORFactories.registerValueFactories( orb ) ;
// Register an ObjectKeyFactory
orb.setObjectKeyFactory( IORFactories.makeObjectKeyFactory(orb) ) ;
}
示例2: IORTemplateImpl
import com.sun.corba.se.spi.orb.ORB; //导入方法依赖的package包/类
public IORTemplateImpl( InputStream is )
{
ORB orb = (ORB)(is.orb()) ;
IdentifiableFactoryFinder finder =
orb.getTaggedProfileTemplateFactoryFinder() ;
oktemp = orb.getObjectKeyFactory().createTemplate( is ) ;
EncapsulationUtility.readIdentifiableSequence( this, finder, is ) ;
makeImmutable() ;
}