Skip to content
Snippets Groups Projects
Commit ce479d52 authored by Michael Simon's avatar Michael Simon
Browse files

NO_STORY Add string list method to attribute builder

parent daff5972
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,10 @@ public class AttributeBuilder {
setStringListValue(attributeRelease, name, attributeResolver.resolveStringListValue(identity, name));
}
public void addStringListAttribute(AttributeReleaseEntity attributeRelease, String name, List<String> stringList) {
setStringListValue(attributeRelease, name, stringList);
}
public void deleteValue(ValueEntity value) {
value.getAttributeRelease().setChanged(true);
value.getAttributeRelease().getValues().remove(value);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment