summaryrefslogtreecommitdiff
path: root/java/test/Ice/faultTolerance/TestI.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/test/Ice/faultTolerance/TestI.java')
-rw-r--r--java/test/Ice/faultTolerance/TestI.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/java/test/Ice/faultTolerance/TestI.java b/java/test/Ice/faultTolerance/TestI.java
index bec0085ef3e..3d3b362bd0a 100644
--- a/java/test/Ice/faultTolerance/TestI.java
+++ b/java/test/Ice/faultTolerance/TestI.java
@@ -19,24 +19,28 @@ public final class TestI extends _TestIntfDisp
_pseudoPid = port; // We use the port number instead of the process ID in Java.
}
+ @Override
public void
shutdown(Ice.Current current)
{
current.adapter.getCommunicator().shutdown();
}
+ @Override
public void
abort(Ice.Current current)
{
Runtime.getRuntime().halt(0);
}
+ @Override
public void
idempotentAbort(Ice.Current current)
{
Runtime.getRuntime().halt(0);
}
+ @Override
public int
pid(Ice.Current current)
{