summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/Application/Server.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/IceGridGUI/Application/Server.java')
-rwxr-xr-xjava/src/IceGridGUI/Application/Server.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/java/src/IceGridGUI/Application/Server.java b/java/src/IceGridGUI/Application/Server.java
index dd02f8251de..9cd4f85dbe9 100755
--- a/java/src/IceGridGUI/Application/Server.java
+++ b/java/src/IceGridGUI/Application/Server.java
@@ -96,7 +96,9 @@ class Server extends Communicator implements TemplateInstance
"",
"",
true,
- new DistributionDescriptor("", new java.util.LinkedList()));
+ new DistributionDescriptor("", new java.util.LinkedList()),
+ false // Allocatable
+ );
}
static public IceBoxDescriptor newIceBoxDescriptor()
@@ -108,7 +110,8 @@ class Server extends Communicator implements TemplateInstance
"",
true,
true,
- new java.util.LinkedList()
+ new java.util.LinkedList(),
+ false // Allocatable
);
java.util.LinkedList adapterList = new java.util.LinkedList();
@@ -135,6 +138,7 @@ class Server extends Communicator implements TemplateInstance
"",
true,
new DistributionDescriptor("", new java.util.LinkedList()),
+ false, // Allocatable
new java.util.LinkedList()
);
}