summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/LiveDeployment/Slave.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/IceGridGUI/LiveDeployment/Slave.java')
-rw-r--r--java/src/IceGridGUI/LiveDeployment/Slave.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/java/src/IceGridGUI/LiveDeployment/Slave.java b/java/src/IceGridGUI/LiveDeployment/Slave.java
index de967595c0f..be6dc806de9 100644
--- a/java/src/IceGridGUI/LiveDeployment/Slave.java
+++ b/java/src/IceGridGUI/LiveDeployment/Slave.java
@@ -41,22 +41,22 @@ class Slave extends TreeNode
final String prefix = "Shutting down registry '" + _id + "'...";
getCoordinator().getStatusBar().setText(prefix);
- AMI_Admin_shutdownRegistry cb = new AMI_Admin_shutdownRegistry()
+ Callback_Admin_shutdownRegistry cb = new Callback_Admin_shutdownRegistry()
{
//
// Called by another thread!
//
- public void ice_response()
+ public void response()
{
amiSuccess(prefix);
}
- public void ice_exception(Ice.UserException e)
+ public void exception(Ice.UserException e)
{
amiFailure(prefix, "Failed to shutdown " + _id, e);
}
- public void ice_exception(Ice.LocalException e)
+ public void exception(Ice.LocalException e)
{
amiFailure(prefix, "Failed to shutdown " + _id,
e.toString());
@@ -67,7 +67,7 @@ class Slave extends TreeNode
{
getCoordinator().getMainFrame().setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
- getCoordinator().getAdmin().shutdownRegistry_async(cb, _id);
+ getCoordinator().getAdmin().begin_shutdownRegistry(_id, cb);
}
catch(Ice.LocalException e)
{