/* (non-Javadoc)
  * @see org.openiam.idm.srvc.grp.ws.GroupDataWebService#getAllAttributes(java.lang.String)
  */
 public GroupAttrMapResponse getAllAttributes(String groupId) {
   GroupAttrMapResponse resp = new GroupAttrMapResponse(ResponseStatus.SUCCESS);
   Map<String, GroupAttribute> attrMap = groupManager.getAllAttributes(groupId);
   if (attrMap == null || attrMap.isEmpty()) {
     resp.setStatus(ResponseStatus.FAILURE);
     return resp;
   }
   resp.setGroupAttrMap(attrMap);
   return resp;
 }