return false;
}
String sourceDomainPath = commonInfo.getSourceDomainPath();
String targetDomainPath = commonInfo.getDestinationDomainPath();
JBIUpgradeTool jbiTool = JBIUpgradeToolFactory.getJBIUpgradeTool(logger);
try {
logger.log(Level.INFO, stringManager.getString("upgrade.jbi.startMessage"));
jbiTool.migrateJBIArtifacts(sourceDomainPath, targetDomainPath);
logger.log(Level.INFO, stringManager.getString("upgrade.jbi.finishMessage"));
flag = true;
} catch (Exception e) {
logger.log(Level.SEVERE, stringManager.getString("upgrade.jbi.jbiExceptionMessage", e.getMessage()), e);
}