Issue #113 - fix javadoc errors

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
Lachlan Roberts 2018-11-26 14:12:16 +01:00
parent 7c0ea57923
commit 2cd579353c
2 changed files with 7 additions and 3 deletions

View File

@ -47,8 +47,9 @@ import static java.lang.invoke.MethodType.methodType;
/**
<table>
<caption>CustomRequestLog Format Codes</caption>
<tr>
<td width="20%"><b>Format String</b></td>
<td><b>Format String</b></td>
<td><b>Description</b></td>
</tr>
@ -267,7 +268,6 @@ import static java.lang.invoke.MethodType.methodType;
<td>%{VARNAME}^to</td>
<td>The contents of VARNAME: trailer line(s) in the response sent from the server.</td>
</tr>
</table>
*/
public class CustomRequestLog extends ContainerLifeCycle implements RequestLog
@ -336,6 +336,7 @@ public class CustomRequestLog extends ContainerLifeCycle implements RequestLog
/**
* Extract the user authentication
* @param request The request to extract from
* @param checkDeferred Whether to check for deferred authentication
* @return The string to log for authenticated user.
*/
protected static String getAuthentication(Request request, boolean checkDeferred)

View File

@ -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)
{