if (TangoAttributeHelper.isAttributeRunning(scanServerDeviceName, actuatorsName)) {
DeviceProxy proxy = TangoDeviceHelper.getDeviceProxy(scanServerDeviceName);
if (proxy != null) {
try {
DeviceAttribute attribute = proxy.read_attribute(actuatorsName);
String[] allattributeList = attribute.extractStringArray();
attributeList = Arrays.copyOf(allattributeList, attribute.getNbRead());
}
catch (Exception e) {
// TODO: handle exception
}