DeviceProxy dataRecorderProxy = TangoDeviceHelper
.getDeviceProxy(dataRecorderDeviceName);
if (dataRecorderProxy != null) {
DeviceAttribute nxEntryAttribute = dataRecorderProxy.read_attribute(NX_ENTRY);
if (nxEntryAttribute != null) {
String nxEntryName = nxEntryAttribute.extractString();
nexusFileEntryMap.put(scanServerName.toLowerCase(), nxEntryName);
}
}
}
}