BeanUtils.describe(patchNameSender);
Iterator<Entry<String, String>> iterator =
description.entrySet().iterator();
while (iterator.hasNext()) {
Entry<String, String> entry = iterator.next();
PropertySpec property = xmlSender.addNewProperty();
property.setName(entry.getKey());
property.setValue(entry.getValue());
}
} catch (InvocationTargetException e) {
LOG.warn(e.getMessage(), e);
} catch (NoSuchMethodException e) {
LOG.warn(e.getMessage(), e);