if (value != null) {
RefreshConfigurationRequest request = new RefreshConfigurationRequest();
request.setConfigLocations(value.trim().split("[ \\r\\t\\n,;]+"));
GwtCommand command = new GwtCommand(RefreshConfigurationRequest.COMMAND);
command.setCommandRequest(request);
GwtCommandDispatcher.getInstance().execute(command, new CommandCallback() {
public void execute(CommandResponse response) {
RefreshConfigurationResponse r = (RefreshConfigurationResponse) response;
String message = "Reloaded applications : ";
List<String> names = Arrays.asList(r.getApplicationNames());