diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-05-17 18:44:28 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-05-17 18:44:28 +0000 |
commit | c44f531305ba295f52a2eb50390cf4e4d0fb78da (patch) | |
tree | 7dceada2d44cfba48ebe228f31771ff63b819d5c /java/test/Ice/interceptor/InterceptorI.java | |
parent | Removed incorrect comment (diff) | |
download | ice-c44f531305ba295f52a2eb50390cf4e4d0fb78da.tar.bz2 ice-c44f531305ba295f52a2eb50390cf4e4d0fb78da.tar.xz ice-c44f531305ba295f52a2eb50390cf4e4d0fb78da.zip |
Split DispatchStatus into DispatchStatus and ReplyStatus
Diffstat (limited to 'java/test/Ice/interceptor/InterceptorI.java')
-rw-r--r-- | java/test/Ice/interceptor/InterceptorI.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/test/Ice/interceptor/InterceptorI.java b/java/test/Ice/interceptor/InterceptorI.java index a323ade0e2c..a677c5a3d89 100644 --- a/java/test/Ice/interceptor/InterceptorI.java +++ b/java/test/Ice/interceptor/InterceptorI.java @@ -24,7 +24,7 @@ class InterceptorI extends Ice.DispatchInterceptor } - public IceInternal.DispatchStatus + public Ice.DispatchStatus dispatch(Ice.Request request) { Ice.Current current = request.getCurrent(); @@ -54,7 +54,7 @@ class InterceptorI extends Ice.DispatchInterceptor return _lastStatus; } - IceInternal.DispatchStatus + Ice.DispatchStatus getLastStatus() { return _lastStatus; @@ -75,5 +75,5 @@ class InterceptorI extends Ice.DispatchInterceptor protected final Ice.Object _servant; protected String _lastOperation; - protected IceInternal.DispatchStatus _lastStatus; + protected Ice.DispatchStatus _lastStatus; } |