48         for (String key : formData.keySet()) {
    49             if (!key.startsWith(Constants.USER_ATTRIBUTES_PREFIX)) 
continue;
    50             String attribute = key.substring(Constants.USER_ATTRIBUTES_PREFIX.length());
    53             List<String> modelVal = user.getAttribute(attribute);
    54             List<String> modelValue = modelVal==null ? 
new ArrayList<String>() : 
new ArrayList<>(modelVal);
    57             for (String value : formData.get(key)) {
    62             user.setAttribute(attribute, modelValue);
 static void addOrSetValue(List< String > list, int index, String value)
Definition: AttributeFormDataProcessor.java:66