idAdapter.addAttribute(g.getDistinguishedName(), attributeName, attributeValue);
}catch(AttributeInUseException aiue){
// TODO : do nothing if attribute exists ? or overwrite ?
}
}else {
idAdapter.removeAttribute(g.getDistinguishedName(), attributeName, attributeValue);
}
}
writeCharacterResponse(response,"{ \"response\" : \"Group attribute modification was successful.\" }","UTF-8",mimeType+";charset=UTF-8");
}