use of com.cosylab.acs.maci.RemoteException in project ACS by ACS-Community.
the class ContainerProxy method restart_component.
/**
* @see com.cosylab.acs.maci.Container#restart_component(int)
*/
public Component restart_component(int handle) throws RemoteException {
try {
org.omg.CORBA.Object component = container.restart_component(handle);
final String componentName = "unknown";
return new ComponentProxy(componentName, component);
} catch (Exception ex) {
RemoteException re = new RemoteException("Failed to invoke 'restart_component()' method.", ex);
throw re;
}
}
Aggregations