/* (non-Javadoc)
  * @see org.openiam.idm.srvc.grp.ws.GroupDataWebService#getChildGroups(java.lang.String, boolean)
  */
 public GroupListResponse getChildGroups(String parentGroupId, boolean subgroups) {
   GroupListResponse resp = new GroupListResponse(ResponseStatus.SUCCESS);
   List<Group> grpList = groupManager.getChildGroups(parentGroupId, subgroups);
   if (grpList == null || grpList.isEmpty()) {
     resp.setStatus(ResponseStatus.FAILURE);
     return resp;
   }
   resp.setGroupList(grpList);
   return resp;
 }