summaryrefslogtreecommitdiff
path: root/java/test/Ice/operations/OnewaysNewAMI.java
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2014-09-24 21:06:55 +0200
committerJose <jose@zeroc.com>2014-09-24 21:06:55 +0200
commitb1087d646fa93c4208dd227d0c9df323ff7c858b (patch)
tree48532138bffdfac0dc5c818593d9c1958cfeeeb5 /java/test/Ice/operations/OnewaysNewAMI.java
parentPHP dependency fixes (diff)
downloadice-b1087d646fa93c4208dd227d0c9df323ff7c858b.tar.bz2
ice-b1087d646fa93c4208dd227d0c9df323ff7c858b.tar.xz
ice-b1087d646fa93c4208dd227d0c9df323ff7c858b.zip
Fixed (ICE-5511) - Consider removing the deprecated AMI mapping
Diffstat (limited to 'java/test/Ice/operations/OnewaysNewAMI.java')
-rw-r--r--java/test/Ice/operations/OnewaysNewAMI.java244
1 files changed, 0 insertions, 244 deletions
diff --git a/java/test/Ice/operations/OnewaysNewAMI.java b/java/test/Ice/operations/OnewaysNewAMI.java
deleted file mode 100644
index 55f17e4f25e..00000000000
--- a/java/test/Ice/operations/OnewaysNewAMI.java
+++ /dev/null
@@ -1,244 +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 test.Ice.operations;
-
-import test.Ice.operations.Test.Callback_MyClass_opIdempotent;
-import test.Ice.operations.Test.Callback_MyClass_opNonmutating;
-import test.Ice.operations.Test.Callback_MyClass_opVoid;
-import test.Ice.operations.Test.MyClassPrx;
-
-class OnewaysNewAMI
-{
- private static void
- test(boolean b)
- {
- if(!b)
- {
- throw new RuntimeException();
- }
- }
-
- private static class CallbackBase
- {
- CallbackBase()
- {
- _called = false;
- }
-
- public synchronized void check()
- {
- while(!_called)
- {
- try
- {
- wait();
- }
- catch(InterruptedException ex)
- {
- }
- }
-
- _called = false;
- }
-
- public synchronized void called()
- {
- assert(!_called);
- _called = true;
- notify();
- }
-
- private boolean _called;
- }
-
- static class Callback extends CallbackBase
- {
- public Callback()
- {
- }
-
- public void
- sent(boolean sentSynchronously)
- {
- called();
- }
-
- void noException(Ice.LocalException ex)
- {
- test(false);
- }
- }
-
- static void
- onewaysNewAMI(test.Util.Application app, MyClassPrx proxy)
- {
- MyClassPrx p = (MyClassPrx)proxy.ice_oneway();
-
- {
- final Callback cb = new Callback();
- Ice.Callback_Object_ice_ping callback = new Ice.Callback_Object_ice_ping()
- {
- @Override
- public void
- response()
- {
- test(false);
- }
-
- @Override
- public void
- exception(Ice.LocalException ex)
- {
- cb.noException(ex);
- }
-
- @Override
- public void
- sent(boolean sentSynchronously)
- {
- cb.sent(sentSynchronously);
- }
- };
- p.begin_ice_ping(callback);
- cb.check();
- }
-
- {
- try
- {
- p.begin_ice_isA("::Test::MyClass");
- test(false);
- }
- catch(java.lang.IllegalArgumentException ex)
- {
- }
- }
-
- {
- try
- {
- p.begin_ice_id();
- test(false);
- }
- catch(java.lang.IllegalArgumentException ex)
- {
- }
- }
-
- {
- try
- {
- p.begin_ice_ids();
- test(false);
- }
- catch(java.lang.IllegalArgumentException ex)
- {
- }
- }
-
- {
- final Callback cb = new Callback();
- Callback_MyClass_opVoid callback = new Callback_MyClass_opVoid()
- {
- @Override
- public void
- response()
- {
- test(false);
- }
-
- @Override
- public void
- exception(Ice.LocalException ex)
- {
- cb.noException(ex);
- }
-
- @Override
- public void
- sent(boolean sentSynchronously)
- {
- cb.sent(sentSynchronously);
- }
- };
- p.begin_opVoid(callback);
- cb.check();
- }
-
- {
- final Callback cb = new Callback();
- Callback_MyClass_opIdempotent callback = new Callback_MyClass_opIdempotent()
- {
- @Override
- public void
- response()
- {
- test(false);
- }
-
- @Override
- public void
- exception(Ice.LocalException ex)
- {
- cb.noException(ex);
- }
-
- @Override
- public void
- sent(boolean sentSynchronously)
- {
- cb.sent(sentSynchronously);
- }
- };
- p.begin_opIdempotent(callback);
- cb.check();
- }
-
- {
- final Callback cb = new Callback();
- Callback_MyClass_opNonmutating callback = new Callback_MyClass_opNonmutating()
- {
- @Override
- public void
- response()
- {
- test(false);
- }
-
- @Override
- public void
- exception(Ice.LocalException ex)
- {
- cb.noException(ex);
- }
-
- @Override
- public void
- sent(boolean sentSynchronously)
- {
- cb.sent(sentSynchronously);
- }
- };
- p.begin_opNonmutating(callback);
- cb.check();
- }
-
- {
- try
- {
- p.begin_opByte((byte)0xff, (byte)0x0f);
- test(false);
- }
- catch(java.lang.IllegalArgumentException ex)
- {
- }
- }
- }
-}