Map<String, Object> attributes = new HashMap<String, Object>();
while (attributeNames.hasMoreElements()) {
String name = attributeNames.nextElement();
if (!name.startsWith(AURA_PREFIX)) {
Object value = new StringParam(name, 0, false).get(request);
attributes.put(name, value);
}
}