From 95b8f12336bbc46f8d3e7cd407b89911aba8d2c5 Mon Sep 17 00:00:00 2001 From: Andrew Branson Date: Mon, 15 Sep 2014 11:36:09 +0200 Subject: Rename DomainPath.setEntity to setItemPath --- src/main/java/com/c2kernel/process/Bootstrap.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/com/c2kernel/process/Bootstrap.java') 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); -- cgit v1.2.3