diff options
author | Mark Spruiell <mes@zeroc.com> | 2008-04-10 15:19:44 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2008-04-10 15:19:44 -0700 |
commit | a1eb6edc95a106631a882c6b66010c58d3bd3511 (patch) | |
tree | 3dcba479c36157907ca74d7fe2629e2b397e2fbf /java/src/Ice/_ObjectDelM.java | |
parent | deprecate LoggerFactory (diff) | |
download | ice-a1eb6edc95a106631a882c6b66010c58d3bd3511.tar.bz2 ice-a1eb6edc95a106631a882c6b66010c58d3bd3511.tar.xz ice-a1eb6edc95a106631a882c6b66010c58d3bd3511.zip |
using Java5 mapping for Context in public API
Diffstat (limited to 'java/src/Ice/_ObjectDelM.java')
-rw-r--r-- | java/src/Ice/_ObjectDelM.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/java/src/Ice/_ObjectDelM.java b/java/src/Ice/_ObjectDelM.java index 064c4eec31c..f6750c1ec65 100644 --- a/java/src/Ice/_ObjectDelM.java +++ b/java/src/Ice/_ObjectDelM.java @@ -12,7 +12,7 @@ package Ice; public class _ObjectDelM implements _ObjectDel { public boolean - ice_isA(String __id, java.util.Map __context) + ice_isA(String __id, java.util.Map<String, String> __context) throws IceInternal.LocalExceptionWrapper { IceInternal.Outgoing __og = __handler.getOutgoing("ice_isA", OperationMode.Nonmutating, __context); @@ -59,7 +59,7 @@ public class _ObjectDelM implements _ObjectDel } public void - ice_ping(java.util.Map __context) + ice_ping(java.util.Map<String, String> __context) throws IceInternal.LocalExceptionWrapper { IceInternal.Outgoing __og = __handler.getOutgoing("ice_ping", OperationMode.Nonmutating, __context); @@ -96,7 +96,7 @@ public class _ObjectDelM implements _ObjectDel } public String[] - ice_ids(java.util.Map __context) + ice_ids(java.util.Map<String, String> __context) throws IceInternal.LocalExceptionWrapper { IceInternal.Outgoing __og = __handler.getOutgoing("ice_ids", OperationMode.Nonmutating, __context); @@ -134,7 +134,7 @@ public class _ObjectDelM implements _ObjectDel } public String - ice_id(java.util.Map __context) + ice_id(java.util.Map<String, String> __context) throws IceInternal.LocalExceptionWrapper { IceInternal.Outgoing __og = __handler.getOutgoing("ice_id", OperationMode.Nonmutating, __context); @@ -172,7 +172,7 @@ public class _ObjectDelM implements _ObjectDel } public boolean - ice_invoke(String operation, OperationMode mode, byte[] inParams, ByteSeqHolder outParams, java.util.Map __context) + ice_invoke(String operation, OperationMode mode, byte[] inParams, ByteSeqHolder outParams, java.util.Map<String, String> __context) throws IceInternal.LocalExceptionWrapper { IceInternal.Outgoing __og = __handler.getOutgoing(operation, mode, __context); |