From 142f955cce8647d62a964226bb4975e4b6a8505a Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Mon, 30 May 2016 09:59:23 +0000
Subject: [PATCH] OPENDJ-2950 Add support for cs-uri and cs-uri-stem fields in HTTP access log

---
 opendj-server-legacy/src/main/java/org/opends/server/loggers/HTTPRequestInfo.java |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/loggers/HTTPRequestInfo.java b/opendj-server-legacy/src/main/java/org/opends/server/loggers/HTTPRequestInfo.java
index a2dda5f..6372a70 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/loggers/HTTPRequestInfo.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/loggers/HTTPRequestInfo.java
@@ -11,10 +11,12 @@
  * Header, with the fields enclosed by brackets [] replaced by your own identifying
  * information: "Portions Copyright [year] [name of copyright owner]".
  *
- * Copyright 2013-2015 ForgeRock AS.
+ * Copyright 2013-2016 ForgeRock AS.
  */
 package org.opends.server.loggers;
 
+import java.net.URI;
+
 /**
  * Contains the information required for logging the HTTP request.
  */
@@ -78,11 +80,11 @@
   String getMethod();
 
   /**
-   * Returns the query issued by the client.
+   * Returns the URI issued by the client.
    *
-   * @return the query
+   * @return the URI
    */
-  String getQuery();
+  URI getUri();
 
   /**
    * Returns the user agent used by the client.

--
Gitblit v1.10.0