本文整理汇总了Java中com.sun.corba.se.spi.resolver.Resolver类的典型用法代码示例。如果您正苦于以下问题:Java Resolver类的具体用法?Java Resolver怎么用?Java Resolver使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Resolver类属于com.sun.corba.se.spi.resolver包,在下文中一共展示了Resolver类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: initializeNaming
import com.sun.corba.se.spi.resolver.Resolver; //导入依赖的package包/类
private void initializeNaming( ORB orb )
{
LocalResolver localResolver = ResolverDefault.makeLocalResolver() ;
orb.setLocalResolver( localResolver ) ;
Resolver bootResolver = ResolverDefault.makeBootstrapResolver( orb,
orb.getORBData().getORBInitialHost(),
orb.getORBData().getORBInitialPort() ) ;
Operation urlOperation = ResolverDefault.makeINSURLOperation( orb,
bootResolver ) ;
orb.setURLOperation( urlOperation ) ;
Resolver irResolver = ResolverDefault.makeORBInitRefResolver( urlOperation,
orb.getORBData().getORBInitialReferences() ) ;
Resolver dirResolver = ResolverDefault.makeORBDefaultInitRefResolver(
urlOperation, orb.getORBData().getORBDefaultInitialReference() ) ;
Resolver resolver =
ResolverDefault.makeCompositeResolver( localResolver,
ResolverDefault.makeCompositeResolver( irResolver,
ResolverDefault.makeCompositeResolver( dirResolver,
bootResolver ) ) ) ;
orb.setResolver( resolver ) ;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:27,代码来源:ORBConfiguratorImpl.java
示例2: resolve_initial_references
import com.sun.corba.se.spi.resolver.Resolver; //导入依赖的package包/类
/**
* Resolve the stringified reference of one of the initially
* available CORBA services.
* @param identifier The stringified object reference of the
* desired service.
* @return An object reference for the desired service.
* @exception InvalidName The supplied identifier is not associated
* with a known service.
* @exception SystemException One of a fixed set of Corba system exceptions.
*/
public org.omg.CORBA.Object resolve_initial_references(
String identifier) throws InvalidName
{
Resolver res ;
synchronized( this ) {
checkShutdownState();
res = resolver ;
}
synchronized (resolverLock) {
org.omg.CORBA.Object result = res.resolve( identifier ) ;
if (result == null)
throw new InvalidName() ;
else
return result ;
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:30,代码来源:ORBImpl.java
示例3: INSURLOperationImpl
import com.sun.corba.se.spi.resolver.Resolver; //导入依赖的package包/类
public INSURLOperationImpl( ORB orb, Resolver bootstrapResolver )
{
this.orb = orb ;
wrapper = ORBUtilSystemException.get( orb,
CORBALogDomains.ORB_RESOLVER ) ;
omgWrapper = OMGSystemException.get( orb,
CORBALogDomains.ORB_RESOLVER ) ;
this.bootstrapResolver = bootstrapResolver ;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:INSURLOperationImpl.java
示例4: list_initial_services
import com.sun.corba.se.spi.resolver.Resolver; //导入依赖的package包/类
/**
* Get a list of the initially available CORBA services.
* This does not work unless an ORBInitialHost is specified during
* initialization (or unless there is an ORB running on the AppletHost)
* since the localhostname
* is inaccessible to applets. If a service properties URL was specified,
* then it is used, otherwise the bootstrapping protocol is used.
* @return A list of the initial services available.
*/
public String[] list_initial_services()
{
Resolver res ;
synchronized( this ) {
checkShutdownState();
res = resolver ;
}
synchronized (resolverLock) {
java.util.Set keys = res.list() ;
return (String[])keys.toArray( new String[keys.size()] ) ;
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:24,代码来源:ORBImpl.java
示例5: setResolver
import com.sun.corba.se.spi.resolver.Resolver; //导入依赖的package包/类
/** Set the resolver used in this ORB. This resolver will be used for list_initial_services
* and resolve_initial_references.
*/
public void setResolver( Resolver resolver )
{
synchronized (this) {
checkShutdownState();
}
synchronized (resolverLock) {
this.resolver = resolver ;
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:13,代码来源:ORBImpl.java
示例6: getResolver
import com.sun.corba.se.spi.resolver.Resolver; //导入依赖的package包/类
/** Get the resolver used in this ORB. This resolver will be used for list_initial_services
* and resolve_initial_references.
*/
public Resolver getResolver()
{
synchronized (this) {
checkShutdownState();
}
synchronized (resolverLock) {
return resolver ;
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:13,代码来源:ORBImpl.java
注:本文中的com.sun.corba.se.spi.resolver.Resolver类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论