{
//save all values
DeviceProxy proxy = TangoDeviceHelper.getDeviceProxy(m_strAuthPath);
if (proxy != null) {
try {
DeviceData argin = new DeviceData();
argin.insert(m_tfDirAccessRights.getText());
proxy.command_inout("SetDirAccessRights", argin);
} catch (DevFailed exception) {
AuthServerMessageManager.notifyExecuteCommandErrorDetected(m_strAuthPath, "SetDirAccessRights", exception);
}
try {
DeviceData argin = new DeviceData();
argin.insert(m_tfFileAccessRights.getText());
proxy.command_inout("SetFileAccessRights", argin);
} catch (DevFailed exception) {
AuthServerMessageManager.notifyExecuteCommandErrorDetected(m_strAuthPath,"SetFileAccessRights",exception);
}
}