| java.lang.Object org.jacorb.imr.ImRHostInfo
ImRHostInfo | public class ImRHostInfo implements java.io.Serializable(Code) | | This class represents a host. It contains information about
a server startup daemon residing on this host and provides
a method for starting a server on that host.
author: Nicolas Noffke version: $Id: ImRHostInfo.java,v 1.12 2006/06/27 12:54:33 alphonse.bendt Exp $ |
Constructor Summary | |
public | ImRHostInfo(HostInfo host) The constructor of this class. |
Method Summary | |
public void | startServer(String command, ORB orb) This method tries to start a server with the daemon for this host.
Parameters: command - the startup command of the server Parameters: orb - needed for calling string_to_object(). exception: ServerStartupFailed - propagated up from the daemon if somethingwent wrong. | public HostInfo | toHostInfo() |
serialVersionUID | final public static long serialVersionUID(Code) | | |
ImRHostInfo | public ImRHostInfo(HostInfo host)(Code) | | The constructor of this class.
Parameters: host - the HostInfo object to take the information from. |
startServer | public void startServer(String command, ORB orb) throws ServerStartupFailed(Code) | | This method tries to start a server with the daemon for this host.
Parameters: command - the startup command of the server Parameters: orb - needed for calling string_to_object(). exception: ServerStartupFailed - propagated up from the daemon if somethingwent wrong. Likely to throw CORBA System Exceptions as well, especiallyif the daemon is down. |
toHostInfo | public HostInfo toHostInfo()(Code) | | "Convert" this object to a HostInfo object
a HostInfo instance |
|
|