diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-02-14 14:56:46 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-02-14 14:56:46 +0000 |
commit | 20591078bc1c9e6b8d15f1783cbc2eef4fa435c2 (patch) | |
tree | 5332c02bbfffa309678ebe850d2626bd71034146 /java/test/Ice/exceptions/AllTests.java | |
parent | More Ice.OA fixes (diff) | |
download | ice-20591078bc1c9e6b8d15f1783cbc2eef4fa435c2.tar.bz2 ice-20591078bc1c9e6b8d15f1783cbc2eef4fa435c2.tar.xz ice-20591078bc1c9e6b8d15f1783cbc2eef4fa435c2.zip |
Remove Ice.OA.
Diffstat (limited to 'java/test/Ice/exceptions/AllTests.java')
-rw-r--r-- | java/test/Ice/exceptions/AllTests.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/test/Ice/exceptions/AllTests.java b/java/test/Ice/exceptions/AllTests.java index 60a2e2a8652..efc02e2020f 100644 --- a/java/test/Ice/exceptions/AllTests.java +++ b/java/test/Ice/exceptions/AllTests.java @@ -729,7 +729,7 @@ public class AllTests // Expected } - communicator.getProperties().setProperty("Ice.OA.TestAdapter0.Endpoints", "default"); + communicator.getProperties().setProperty("TestAdapter0.Endpoints", "default"); first = communicator.createObjectAdapter("TestAdapter0"); try { @@ -751,14 +751,14 @@ public class AllTests { // Expected } - test(communicator.getProperties().getProperty("Ice.OA.TestAdapter0.Endpoints").equals("default")); + test(communicator.getProperties().getProperty("TestAdapter0.Endpoints").equals("default")); first.deactivate(); System.out.println("ok"); } { System.out.print("testing servant registration exceptions... "); - communicator.getProperties().setProperty("Ice.OA.TestAdapter1.Endpoints", "default"); + communicator.getProperties().setProperty("TestAdapter1.Endpoints", "default"); Ice.ObjectAdapter adapter = communicator.createObjectAdapter("TestAdapter1"); Ice.Object obj = new EmptyI(); adapter.add(obj, communicator.stringToIdentity("x")); @@ -786,7 +786,7 @@ public class AllTests { System.out.print("testing servant locator registration exceptions... "); - communicator.getProperties().setProperty("Ice.OA.TestAdapter2.Endpoints", "default"); + communicator.getProperties().setProperty("TestAdapter2.Endpoints", "default"); Ice.ObjectAdapter adapter = communicator.createObjectAdapter("TestAdapter2"); Ice.ServantLocator loc = new ServantLocatorI(); adapter.addServantLocator(loc, "x"); |