Issue #113 - fix javadoc errors
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
parent
7c0ea57923
commit
2cd579353c
|
@ -47,8 +47,9 @@ import static java.lang.invoke.MethodType.methodType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
<table>
|
<table>
|
||||||
|
<caption>CustomRequestLog Format Codes</caption>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="20%"><b>Format String</b></td>
|
<td><b>Format String</b></td>
|
||||||
<td><b>Description</b></td>
|
<td><b>Description</b></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
@ -267,7 +268,6 @@ import static java.lang.invoke.MethodType.methodType;
|
||||||
<td>%{VARNAME}^to</td>
|
<td>%{VARNAME}^to</td>
|
||||||
<td>The contents of VARNAME: trailer line(s) in the response sent from the server.</td>
|
<td>The contents of VARNAME: trailer line(s) in the response sent from the server.</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
*/
|
*/
|
||||||
public class CustomRequestLog extends ContainerLifeCycle implements RequestLog
|
public class CustomRequestLog extends ContainerLifeCycle implements RequestLog
|
||||||
|
@ -336,6 +336,7 @@ public class CustomRequestLog extends ContainerLifeCycle implements RequestLog
|
||||||
/**
|
/**
|
||||||
* Extract the user authentication
|
* Extract the user authentication
|
||||||
* @param request The request to extract from
|
* @param request The request to extract from
|
||||||
|
* @param checkDeferred Whether to check for deferred authentication
|
||||||
* @return The string to log for authenticated user.
|
* @return The string to log for authenticated user.
|
||||||
*/
|
*/
|
||||||
protected static String getAuthentication(Request request, boolean checkDeferred)
|
protected static String getAuthentication(Request request, boolean checkDeferred)
|
||||||
|
|
|
@ -64,7 +64,10 @@ public class NCSARequestLog extends AbstractNCSARequestLog
|
||||||
|
|
||||||
/* ------------------------------------------------------------ */
|
/* ------------------------------------------------------------ */
|
||||||
/**
|
/**
|
||||||
* Create request log object with specified output file name.
|
* Create request log object given a RequestLogWriter file name.
|
||||||
|
*
|
||||||
|
* @param writer the writer which manages the output of the formatted string
|
||||||
|
* produced by the {@link RequestLog}
|
||||||
*/
|
*/
|
||||||
public NCSARequestLog(RequestLogWriter writer)
|
public NCSARequestLog(RequestLogWriter writer)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue