diff options
Diffstat (limited to 'src/main/java/com/c2kernel/process/Bootstrap.java')
| -rw-r--r-- | src/main/java/com/c2kernel/process/Bootstrap.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/c2kernel/process/Bootstrap.java b/src/main/java/com/c2kernel/process/Bootstrap.java index 23582bb..3b61ad3 100644 --- a/src/main/java/com/c2kernel/process/Bootstrap.java +++ b/src/main/java/com/c2kernel/process/Bootstrap.java @@ -162,7 +162,7 @@ public class Bootstrap if (!modDomPath.equals(path)) { // move item to module subtree
Logger.msg("Module item "+itemName+" found with path "+path.toString()+". Moving to "+modDomPath.toString());
- modDomPath.setEntity(itemPath);
+ modDomPath.setItemPath(itemPath);
if (!modDomPath.exists())
lookupManager.add(modDomPath);
lookupManager.delete(path);
@@ -275,7 +275,7 @@ public class Bootstrap Gateway.getCorbaServer().createItem(itemPath);
lookupManager.add(itemPath);
DomainPath newDomPath = impHandler.getPath(itemName, ns);
- newDomPath.setEntity(itemPath);
+ newDomPath.setItemPath(itemPath);
lookupManager.add(newDomPath);
ItemProxy newItemProxy = Gateway.getProxyManager().getProxy(itemPath);
newItemProxy.initialise( systemAgents.get("system").getPath(), props, ca, null);
@@ -350,7 +350,7 @@ public class Bootstrap serverEntity = new ItemPath();
Gateway.getCorbaServer().createItem(serverEntity);
lookupManager.add(serverEntity);
- thisServerPath.setEntity(serverEntity);
+ thisServerPath.setItemPath(serverEntity);
lookupManager.add(thisServerPath);
}
Gateway.getStorage().put(serverEntity, new Property("Name", serverName, false), null);
|
