diff options
| author | Andrew Branson <andrew.branson@cern.ch> | 2014-09-15 11:36:09 +0200 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2014-09-15 11:36:09 +0200 |
| commit | 95b8f12336bbc46f8d3e7cd407b89911aba8d2c5 (patch) | |
| tree | a62c537c5db8eab2134ba62bdfdfd21934719b5a /src/main/java/com/c2kernel/process/Bootstrap.java | |
| parent | 19e84996506d092a70b018c5f640d1ef82a48740 (diff) | |
Rename DomainPath.setEntity to setItemPath
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);
|
