Class HeaderLogEntry
java.lang.Object
io.helidon.reactive.webserver.accesslog.AbstractLogEntry
io.helidon.reactive.webserver.accesslog.HeaderLogEntry
- All Implemented Interfaces:
AccessLogEntry,Handler,BiConsumer<ServerRequest,ServerResponse>
Access log entry for header values.
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface io.helidon.reactive.webserver.Handler
Handler.EntityHandler<T> -
Field Summary
Fields inherited from class io.helidon.reactive.webserver.accesslog.AbstractLogEntry
DEFAULT_MAX_LENGTHFields inherited from interface io.helidon.reactive.webserver.accesslog.AccessLogEntry
NOT_AVAILABLE -
Method Summary
Modifier and TypeMethodDescriptionstatic HeaderLogEntry.BuilderCreate a fluent API builder for a header log entry.static HeaderLogEntryCreate a header log entry for a specified header name with default configuration.protected StringdoApply(AccessLogContext context) Apply the "raw" log entry.Methods inherited from class io.helidon.reactive.webserver.accesslog.AbstractLogEntry
apply, maxLength, pad, sanitizeMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.helidon.reactive.webserver.accesslog.AccessLogEntry
acceptMethods inherited from interface java.util.function.BiConsumer
andThen
-
Method Details
-
create
Create a header log entry for a specified header name with default configuration.- Parameters:
headerName- name of HTTP header to print to the access log- Returns:
- a new header log entry
-
builder
Create a fluent API builder for a header log entry.- Parameters:
headerName- name of HTTP header to print to the access log- Returns:
- a fluent API builder
-
doApply
Description copied from class:AbstractLogEntryApply the "raw" log entry. The result will go through common formatting, such as padding if configured.- Specified by:
doApplyin classAbstractLogEntry- Parameters:
context- context with access to information useful for access log entries- Returns:
- log entry
- See Also:
-