return isRegistered;
}
private boolean rendezvousOccurred() {
boolean rendezvousOccurred = false;
RemoteCommand rc = null;
try {
rc = new RemoteCommand("get", this.programOpts, this.env);
Map<String, String> map = rc.executeAndReturnAttributes("get", RENDEZVOUS_DOTTED_NAME);
String output = map.get("children");
String val = output.substring(output.indexOf("=") + 1);
rendezvousOccurred = Boolean.parseBoolean(val);
logger.finer("rendezvousOccurred = " + val + " for instance " + instanceName);
} catch (CommandException ce) {