diff options
Diffstat (limited to 'python/test/Ice/enums/Server.py')
-rwxr-xr-x | python/test/Ice/enums/Server.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/python/test/Ice/enums/Server.py b/python/test/Ice/enums/Server.py index f51922e12fc..cfaed170f22 100755 --- a/python/test/Ice/enums/Server.py +++ b/python/test/Ice/enums/Server.py @@ -31,6 +31,18 @@ class TestIntfI(Test.TestIntf): def opSimple(self, s1, current=None): return (s1, s1) + def opByteSeq(self, b1, current=None): + return (b1, b1) + + def opShortSeq(self, s1, current=None): + return (s1, s1) + + def opIntSeq(self, i1, current=None): + return (i1, i1) + + def opSimpleSeq(self, s1, current=None): + return (s1, s1) + def shutdown(self, current=None): current.adapter.getCommunicator().shutdown() |