return backendSet;
}
private void initializeAll() throws ReplicationCliException
{
ReplicationCliMain repl = new ReplicationCliMain(outPrintStream,
errorPrintStream, System.in);
getProgressDialog().appendProgressHtml(
UIFactory.HTML_SEPARATOR+"<br><br>");
String cmd = getCommandLineToInitializeAll();
getProgressDialog().appendProgressHtml(Utilities.applyFont(
INFO_CTRL_PANEL_EQUIVALENT_CMD_TO_INITIALIZE_ALL.get().toString()+
"<br><b>"+cmd+"</b><br><br>",
ColorAndFontConstants.progressFont));
for (DN baseDN : replicatedBaseDNs)
{
Message msg = INFO_PROGRESS_INITIALIZING_SUFFIX.get(baseDN.toString(),
ConnectionUtils.getHostPort(getInfo().getDirContext()));
getProgressDialog().appendProgressHtml(Utilities.applyFont(
msg.toString()+"<br>", ColorAndFontConstants.progressFont));
repl.initializeAllSuffix(baseDN.toString(), getInfo().getDirContext(),
true);
}
}