mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Fabio Pistolesi
17.34.2016 4cba8fe7c5bfd75fc8334a4e887fba8c71526b4e
opendj-server-legacy/src/main/java/org/opends/server/loggers/OpenDJAccessEventBuilder.java
@@ -81,13 +81,18 @@
    return self();
  }
  public T ldapControls(Operation operation)
  public T ldapRequestControls(Operation operation)
  {
    List<Control> requestControls = operation.getRequestControls();
    if (!requestControls.isEmpty())
    {
      getOpRequest().put("controls", getControlsAsString(requestControls));
    }
    return self();
  }
  public T ldapResponseControls(Operation operation)
  {
    List<Control> responseControls = operation.getResponseControls();
    if (!responseControls.isEmpty())
    {