diff options
author | Jose <jose@zeroc.com> | 2012-08-14 00:05:17 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2012-08-14 00:05:17 +0200 |
commit | b3a890faf5841289df3299bac6ada7120b324c16 (patch) | |
tree | eacdb167a4d1e6310bfd49827f90fb2ddf2c144a /java/src/IceGridGUI/LiveDeployment/Slave.java | |
parent | missing filter properties (diff) | |
download | ice-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.java | 10 |
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) { |