summaryrefslogtreecommitdiff
path: root/java/src/Ice/AMI_Object_ice_flushBatchRequests.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_flushBatchRequests.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_flushBatchRequests.java')
-rw-r--r--java/src/Ice/AMI_Object_ice_flushBatchRequests.java41
1 files changed, 0 insertions, 41 deletions
diff --git a/java/src/Ice/AMI_Object_ice_flushBatchRequests.java b/java/src/Ice/AMI_Object_ice_flushBatchRequests.java
deleted file mode 100644
index 63b45990b02..00000000000
--- a/java/src/Ice/AMI_Object_ice_flushBatchRequests.java
+++ /dev/null
@@ -1,41 +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_flushBatchRequests_async}.
- **/
-public abstract class AMI_Object_ice_flushBatchRequests extends Callback_Object_ice_flushBatchRequests
-{
- /**
- * Indicates to the caller that a call to <code>ice_flushBatchRequests_async</code>
- * raised an Ice run-time exception.
- *
- * @param ex The run-time exception that was raised.
- *
- * @see ObjectPrx#ice_flushBatchRequests_async
- **/
- public abstract void ice_exception(LocalException ex);
-
- @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();
- }
- }
-}