diff options
author | Matthew Newhook <matthew@zeroc.com> | 2014-10-23 16:28:09 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2014-10-23 16:28:09 -0230 |
commit | f6bb0396e7d8fd12ed50f72ab9fc99436d418576 (patch) | |
tree | ee6ef1cb32f2523839f210eb9ec3b924b97d5998 /java/test/Ice/invoke/BlobjectAsyncI.java | |
parent | Add Object.equals, and minor fix to HashMap.equals (diff) | |
download | ice-f6bb0396e7d8fd12ed50f72ab9fc99436d418576.tar.bz2 ice-f6bb0396e7d8fd12ed50f72ab9fc99436d418576.tar.xz ice-f6bb0396e7d8fd12ed50f72ab9fc99436d418576.zip |
More gradle changes.
Moved android stuff to its own package.
Moved java tests to src/main/java/test subdirectory.
Diffstat (limited to 'java/test/Ice/invoke/BlobjectAsyncI.java')
-rw-r--r-- | java/test/Ice/invoke/BlobjectAsyncI.java | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/java/test/Ice/invoke/BlobjectAsyncI.java b/java/test/Ice/invoke/BlobjectAsyncI.java deleted file mode 100644 index c7e0837b946..00000000000 --- a/java/test/Ice/invoke/BlobjectAsyncI.java +++ /dev/null @@ -1,72 +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.invoke; - -import test.Ice.invoke.Test.MyException; - -public class BlobjectAsyncI extends Ice.BlobjectAsync -{ - @Override - public void - ice_invoke_async(Ice.AMD_Object_ice_invoke cb, byte[] inParams, Ice.Current current) - { - Ice.Communicator communicator = current.adapter.getCommunicator(); - Ice.InputStream in = Ice.Util.createInputStream(communicator, inParams); - in.startEncapsulation(); - Ice.OutputStream out = Ice.Util.createOutputStream(communicator); - out.startEncapsulation(); - if(current.operation.equals("opOneway")) - { - cb.ice_response(true, new byte[0]); - } - else if(current.operation.equals("opString")) - { - String s = in.readString(); - out.writeString(s); - out.writeString(s); - out.endEncapsulation(); - cb.ice_response(true, out.finished()); - } - else if(current.operation.equals("opException")) - { - MyException ex = new MyException(); - out.writeException(ex); - out.endEncapsulation(); - cb.ice_response(false, out.finished()); - } - else if(current.operation.equals("shutdown")) - { - communicator.shutdown(); - cb.ice_response(true, null); - } - else if(current.operation.equals("ice_isA")) - { - String s = in.readString(); - if(s.equals("::Test::MyClass")) - { - out.writeBool(true); - } - else - { - out.writeBool(false); - } - out.endEncapsulation(); - cb.ice_response(true, out.finished()); - } - else - { - Ice.OperationNotExistException ex = new Ice.OperationNotExistException(); - ex.id = current.id; - ex.facet = current.facet; - ex.operation = current.operation; - throw ex; - } - } -} |