summaryrefslogtreecommitdiff
path: root/java/src/Ice/AMI_Object_ice_invoke.java
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2014-09-25 11:16:00 +0200
committerJose <jose@zeroc.com>2014-09-25 11:16:00 +0200
commitf6d17fdeefe51b77267d16c6ece7439135564acc (patch)
treef52eb378bb4ccadb624cca3c568008f41210ed57 /java/src/Ice/AMI_Object_ice_invoke.java
parentFix (ICE-5662) - OpenSSL implementation should print list of enabled ciphers (diff)
downloadice-f6d17fdeefe51b77267d16c6ece7439135564acc.tar.bz2
ice-f6d17fdeefe51b77267d16c6ece7439135564acc.tar.xz
ice-f6d17fdeefe51b77267d16c6ece7439135564acc.zip
Remove leftovers of the old AMI mapping
Diffstat (limited to 'java/src/Ice/AMI_Object_ice_invoke.java')
-rw-r--r--java/src/Ice/AMI_Object_ice_invoke.java55
1 files changed, 0 insertions, 55 deletions
diff --git a/java/src/Ice/AMI_Object_ice_invoke.java b/java/src/Ice/AMI_Object_ice_invoke.java
deleted file mode 100644
index e3bd277d1f4..00000000000
--- a/java/src/Ice/AMI_Object_ice_invoke.java
+++ /dev/null
@@ -1,55 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice is licensed to you under the terms described in the
-// ICE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-package Ice;
-
-/**
- * Callback object for {@link ObjectPrx#.ice_invoke_async}.
- **/
-public abstract class AMI_Object_ice_invoke extends Callback_Object_ice_invoke
-{
- /**
- * Called when an asynchronous operation invocation completes successfully or raises a user exception.
- *
- * @param ok Indicates the result of the invocation. If <code>true</code>, the operation
- * completed succesfully; if <code>false</code>, the operation raised a user exception.
- * @param outEncaps Contains the encoded out-parameters of the operation (if any) if <code>ok</code>
- * is <code>true</code>; otherwise, if <code>ok</code> is <code>false</code>, contains the
- * encoded user exception raised by the operation.
- **/
- public abstract void ice_response(boolean ok, byte[] outEncaps);
-
- /**
- * Called when the invocation raises an Ice run-time exception.
- *
- * @param ex The Ice run-time exception raised by the operation.
- **/
- public abstract void ice_exception(LocalException ex);
-
- @Override
- public final void response(boolean ok, byte[] outEncaps)
- {
- ice_response(ok, outEncaps);
- }
-
- @Override
- public final void exception(LocalException ex)
- {
- ice_exception(ex);
- }
-
- @Override
- public final void sent(boolean sentSynchronously)
- {
- if(!sentSynchronously && this instanceof AMISentCallback)
- {
- ((AMISentCallback)this).ice_sent();
- }
- }
-}