summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/LiveDeployment/Slave.java
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2012-08-14 00:05:17 +0200
committerJose <jose@zeroc.com>2012-08-14 00:05:17 +0200
commitb3a890faf5841289df3299bac6ada7120b324c16 (patch)
treeeacdb167a4d1e6310bfd49827f90fb2ddf2c144a /java/src/IceGridGUI/LiveDeployment/Slave.java
parentmissing filter properties (diff)
downloadice-b3a890faf5841289df3299bac6ada7120b324c16.tar.bz2
ice-b3a890faf5841289df3299bac6ada7120b324c16.tar.xz
ice-b3a890faf5841289df3299bac6ada7120b324c16.zip
ICE-4809 - AMI metadata in Ice services internal definitions
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)
{