本文整理汇总了Java中com.sun.corba.se.impl.logging.IORSystemException类的典型用法代码示例。如果您正苦于以下问题:Java IORSystemException类的具体用法?Java IORSystemException怎么用?Java IORSystemException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IORSystemException类属于com.sun.corba.se.impl.logging包,在下文中一共展示了IORSystemException类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: IdentifiableFactoryFinderBase
import com.sun.corba.se.impl.logging.IORSystemException; //导入依赖的package包/类
protected IdentifiableFactoryFinderBase( ORB orb )
{
map = new HashMap() ;
this.orb = orb ;
wrapper = IORSystemException.get( orb,
CORBALogDomains.OA_IOR ) ;
}
示例2: ObjectKeyTemplateBase
import com.sun.corba.se.impl.logging.IORSystemException; //导入依赖的package包/类
public ObjectKeyTemplateBase( ORB orb, int magic, int scid, int serverid,
String orbid, ObjectAdapterId oaid )
{
this.orb = orb ;
this.wrapper = IORSystemException.get( orb,
CORBALogDomains.OA_IOR ) ;
this.magic = magic ;
this.scid = scid ;
this.serverid = serverid ;
this.orbid = orbid ;
this.oaid = oaid ;
adapterId = computeAdapterId() ;
}
示例3: IORImpl
import com.sun.corba.se.impl.logging.IORSystemException; //导入依赖的package包/类
public IORImpl( ORB orb, String typeid )
{
factory = orb ;
wrapper = IORSystemException.get( orb,
CORBALogDomains.OA_IOR ) ;
this.typeId = typeid ;
}
示例4: IIOPAddressImpl
import com.sun.corba.se.impl.logging.IORSystemException; //导入依赖的package包/类
public IIOPAddressImpl( ORB orb, String host, int port )
{
this.orb = orb ;
wrapper = IORSystemException.get( orb,
CORBALogDomains.OA_IOR ) ;
if ((port < 0) || (port > 65535))
throw wrapper.badIiopAddressPort( new Integer(port)) ;
this.host = host ;
this.port = port ;
}