private void createGroupModify(String dn, Attribute attribute) {
    String[] values = attribute.getValues();

    for (String value : values) {
      value = translateDN.replaceDN(value);
      Modification mod = new Modification(ModificationType.ADD, "member", dn);
      LDIFModifyChangeRecord modLdif = new LDIFModifyChangeRecord(value, mod);
      postProcessingRecords.add(modLdif);
    }
  }