summaryrefslogtreecommitdiff
path: root/python/test/Ice/optional/Server.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2016-08-16 16:37:18 +0200
committerBenoit Foucher <benoit@zeroc.com>2016-08-16 16:37:18 +0200
commit88293201e566c982830482601e878ff4bc643782 (patch)
treeb0ffc2633b8404cde06d4786927b1f6b63024849 /python/test/Ice/optional/Server.py
parentFixed ICE-7273 - C# AMI test failure (diff)
downloadice-88293201e566c982830482601e878ff4bc643782.tar.bz2
ice-88293201e566c982830482601e878ff4bc643782.tar.xz
ice-88293201e566c982830482601e878ff4bc643782.zip
C# mapping changes
- user exceptions are no longer checked on the server side (ICE-6980) - support for ["marshaled-result"] metadata - AMD operations now return a Task - improved dispatch interceptors - PropertiesAdminI::setProperties impl. now invokes callbacks synchronously
Diffstat (limited to 'python/test/Ice/optional/Server.py')
-rwxr-xr-xpython/test/Ice/optional/Server.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/python/test/Ice/optional/Server.py b/python/test/Ice/optional/Server.py
index 106fe5182eb..c865c37b1c3 100755
--- a/python/test/Ice/optional/Server.py
+++ b/python/test/Ice/optional/Server.py
@@ -147,6 +147,30 @@ class InitialI(Test.Initial):
def opVoid(self, current=None):
pass
+ def opMStruct1(self, current):
+ return Test.SmallStruct()
+
+ def opMStruct2(self, p1, current):
+ return (p1, p1)
+
+ def opMSeq1(self, current):
+ return []
+
+ def opMSeq2(self, p1, current):
+ return (p1, p1)
+
+ def opMDict1(self, current):
+ return {}
+
+ def opMDict2(self, p1, current):
+ return (p1, p1)
+
+ def opMG1(self, current):
+ return Test.G()
+
+ def opMG2(self, p1, current):
+ return (p1, p1)
+
def supportsRequiredParams(self, current=None):
return False