本文整理汇总了Java中com.sun.corba.se.impl.logging.ActivationSystemException.get方法的典型用法代码示例。如果您正苦于以下问题:Java ActivationSystemException.get方法的具体用法?Java ActivationSystemException.get怎么用?Java ActivationSystemException.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.sun.corba.se.impl.logging.ActivationSystemException
的用法示例。
在下文中一共展示了ActivationSystemException.get方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: RepositoryImpl
import com.sun.corba.se.impl.logging.ActivationSystemException; //导入方法依赖的package包/类
RepositoryImpl(ORB orb, File dbDir, boolean debug)
{
this.debug = debug ;
this.orb = orb;
wrapper = ActivationSystemException.get( orb, CORBALogDomains.ORBD_REPOSITORY ) ;
// if databse does not exist, create it otherwise read it in
File dbFile = new File(dbDir, "servers.db");
if (!dbFile.exists()) {
db = new RepositoryDB(dbFile);
db.flush();
} else {
try {
FileInputStream fis = new FileInputStream(dbFile);
ObjectInputStream ois = new ObjectInputStream(fis);
db = (RepositoryDB) ois.readObject();
ois.close();
} catch (Exception e) {
throw wrapper.cannotReadRepositoryDb( e ) ;
}
}
// export the repository
orb.connect(this);
}
示例2: ServerManagerImpl
import com.sun.corba.se.impl.logging.ActivationSystemException; //导入方法依赖的package包/类
ServerManagerImpl(ORB orb, CorbaTransportManager transportManager,
Repository repository, String dbDirName, boolean debug)
{
this.orb = orb;
wrapper = ActivationSystemException.get( orb, CORBALogDomains.ORBD_ACTIVATOR ) ;
this.transportManager = transportManager; // REVISIT - NOT USED.
this.repository = repository;
this.dbDirName = dbDirName;
this.debug = debug ;
LegacyServerSocketEndPointInfo endpoint =
orb.getLegacyServerSocketManager()
.legacyGetEndpoint(LegacyServerSocketEndPointInfo.BOOT_NAMING);
initialPort = ((SocketOrChannelAcceptor)endpoint)
.getServerSocket().getLocalPort();
serverTable = new HashMap(256);
// The ServerStartupDelay is the delay added after the Server registers
// end point information. This is to allow the server to completely
// initialize after ORB is instantiated.
serverStartupDelay = ORBConstants.DEFAULT_SERVER_STARTUP_DELAY;
String delay = System.getProperty( ORBConstants.SERVER_STARTUP_DELAY);
if( delay != null ) {
try {
serverStartupDelay = Integer.parseInt( delay );
} catch ( Exception e ) {
// Just use the default 1000 milliseconds as the default
}
}
Class cls = orb.getORBData( ).getBadServerIdHandler();
if( cls == null ) {
orb.setBadServerIdHandler( this );
} else {
orb.initBadServerIdHandler() ;
}
orb.connect(this);
ProcessMonitorThread.start( serverTable );
}