}
if (withUriParam != null) {
data.put("Resolve with", withUriParam);
}
data.put("Registered by", loginResult.getUserName());
BaseOntologyInfo baseOntologyInfo = createOntologyInfo.getBaseOntologyInfo();
if (baseOntologyInfo != null) {
String displayLabel = baseOntologyInfo.getDisplayLabel();
if (displayLabel != null) {
data.put("DisplayLabel", baseOntologyInfo.getDisplayLabel());
}
long size = baseOntologyInfo.getSize();
if (size > 0) {
data.put("Size", String.valueOf(size));
}
}
Thread t = new Thread() {