| | |
| | | String[] args = new String[argList.size()]; |
| | | argList.toArray(args); |
| | | |
| | | getApplicationOutputStream().setNotifyListeners(false); |
| | | getApplicationErrorStream().setNotifyListeners(false); |
| | | try |
| | | { |
| | | int result = helper.invokeImportLDIF(args); |
| | |
| | | ApplicationReturnCode.ReturnCode.CONFIGURATION_ERROR, |
| | | getThrowableMsg(INFO_ERROR_CREATING_BASE_ENTRY.get(), t), t); |
| | | } |
| | | |
| | | finally |
| | | { |
| | | getApplicationOutputStream().setNotifyListeners(true); |
| | | getApplicationErrorStream().setNotifyListeners(true); |
| | | } |
| | | notifyListeners(getFormattedDone()); |
| | | } |
| | | |