diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-12-20 11:44:40 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-12-20 11:44:40 +0000 |
commit | bc056628919427a904655250ef0f96b8c2b30d66 (patch) | |
tree | 122ebc7bdefba9e865fe2e8a7ef4d156f660608f /java/src/IceGridGUI/Application/PlainServer.java | |
parent | - Added internal descriptor types for node-registry communications (diff) | |
download | ice-bc056628919427a904655250ef0f96b8c2b30d66.tar.bz2 ice-bc056628919427a904655250ef0f96b8c2b30d66.tar.xz ice-bc056628919427a904655250ef0f96b8c2b30d66.zip |
Removed property attributes and added iceVersion
Diffstat (limited to 'java/src/IceGridGUI/Application/PlainServer.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/PlainServer.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/java/src/IceGridGUI/Application/PlainServer.java b/java/src/IceGridGUI/Application/PlainServer.java index 1d7f563a14d..5712c137a06 100755 --- a/java/src/IceGridGUI/Application/PlainServer.java +++ b/java/src/IceGridGUI/Application/PlainServer.java @@ -68,7 +68,7 @@ class PlainServer extends Communicator implements Server new java.util.LinkedList(), new PropertySetDescriptor(new String[0], new java.util.LinkedList()), new java.util.LinkedList(), - new LogDescriptor[0], + new String[0], "", "NewServer", "", @@ -81,7 +81,8 @@ class PlainServer extends Communicator implements Server true, new DistributionDescriptor("", new java.util.LinkedList()), false, // Allocatable - "" + "", + "" // Ice version ); } @@ -96,7 +97,7 @@ class PlainServer extends Communicator implements Server new java.util.LinkedList(), new PropertySetDescriptor(new String[0], properties), new java.util.LinkedList(), - new LogDescriptor[0], + new String[0], "", "NewIceBox", "", @@ -110,6 +111,7 @@ class PlainServer extends Communicator implements Server new DistributionDescriptor("", new java.util.LinkedList()), false, // Allocatable "", + "", // Ice version new java.util.LinkedList() ); } |