while(it.hasNext()) {
Element e = (Element) it.next();
Group group = new Group();
BeanHelper.setValue(group, "uri", e.getAttributeValue("uri"));
//group.setIdentity( Integer.parseInt(e.getAttributeValue("identity")));
store.addGroup(group);
}
}
return super.doActionOK(response);
}