*
* @param attributes
* @return
*/
private CustomerGroup buildCustomerGroup(Map<String, Object> attributes) {
CustomerGroup group = new CustomerGroup();
for (Map.Entry<String, Object> attr : attributes.entrySet())
group.set(attr.getKey(), attr.getValue());
return group;
}