/* (non-Javadoc)
  * @see org.openiam.idm.srvc.grp.ws.GroupDataWebService#removeAllAttributes(java.lang.String)
  */
 public Response removeAllAttributes(String groupId) {
   Response resp = new Response(ResponseStatus.SUCCESS);
   groupManager.removeAllAttributes(groupId);
   return resp;
 }