- java.lang.Object
- 
- io.helidon.webserver.accesslog.UserIdLogEntry
 
- 
- All Implemented Interfaces:
- AccessLogEntry,- Handler,- BiConsumer<ServerRequest,ServerResponse>
 
 public final class UserIdLogEntry extends Object implements AccessLogEntry Access log entry for user id. This always returns "-".
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface io.helidon.webserver.HandlerHandler.EntityHandler<T>
 
- 
 - 
Field Summary- 
Fields inherited from interface io.helidon.webserver.accesslog.AccessLogEntryNOT_AVAILABLE
 
- 
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringapply(AccessLogContext context)This method is called once the response is fully processed.static UserIdLogEntrycreate()Create a new access log entry for user id.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface io.helidon.webserver.accesslog.AccessLogEntryaccept
 - 
Methods inherited from interface java.util.function.BiConsumerandThen
 
- 
 
- 
- 
- 
Method Detail- 
createpublic static UserIdLogEntry create() Create a new access log entry for user id.- Returns:
- an entry that always considers user id to be undefined
- See Also:
- AccessLogSupport.Builder.add(AccessLogEntry),- UserLogEntry
 
 - 
applypublic String apply(AccessLogContext context) Description copied from interface:AccessLogEntryThis method is called once the response is fully processed. TheAccessLogContext.serverResponse()will return a completed response.- Specified by:
- applyin interface- AccessLogEntry
- Parameters:
- context- context with access to information useful for access log entries
- Returns:
- string representation of a log entry (such as a formatted date time, response time etc.)
 
 
- 
 
-