@Override public BaseProperty fromString(String value) { BaseProperty property = newProperty(); property.setValue(value); return property; }
@Override public void fromList(BaseProperty<?> property, List<String> list) { property.setValue(list != null ? StringUtils.join(list, ',') : null); }