Uses of Class
io.netty.handler.codec.http.DefaultHttpHeadersFactory
-
Packages that use DefaultHttpHeadersFactory Package Description io.netty.handler.codec.http Encoder, decoder and their related message types for HTTP. -
-
Uses of DefaultHttpHeadersFactory in io.netty.handler.codec.http
Fields in io.netty.handler.codec.http declared as DefaultHttpHeadersFactory Modifier and Type Field Description private static DefaultHttpHeadersFactory
DefaultHttpHeadersFactory. DEFAULT
private static DefaultHttpHeadersFactory
DefaultHttpHeadersFactory. DEFAULT_COMBINING
private static DefaultHttpHeadersFactory
DefaultHttpHeadersFactory. DEFAULT_NO_VALIDATION
private static DefaultHttpHeadersFactory
DefaultHttpHeadersFactory. DEFAULT_TRAILER
Methods in io.netty.handler.codec.http that return DefaultHttpHeadersFactory Modifier and Type Method Description static DefaultHttpHeadersFactory
DefaultHttpHeadersFactory. headersFactory()
Get the default implementation ofHttpHeadersFactory
for creating headers.static DefaultHttpHeadersFactory
DefaultHttpHeadersFactory. trailersFactory()
Get the default implementation ofHttpHeadersFactory
for creating trailers.DefaultHttpHeadersFactory
DefaultHttpHeadersFactory. withCombiningHeaders(boolean combiningHeaders)
Create a new builder that will buildHttpHeaders
objects that either combine multi-valued headers, or not.DefaultHttpHeadersFactory
DefaultHttpHeadersFactory. withNameValidation(boolean validation)
Create a new builder that has HTTP header name validation enabled or disabled.DefaultHttpHeadersFactory
DefaultHttpHeadersFactory. withNameValidator(DefaultHeaders.NameValidator<java.lang.CharSequence> validator)
Create a new builder that with the givenDefaultHeaders.NameValidator
.DefaultHttpHeadersFactory
DefaultHttpHeadersFactory. withValidation(boolean validation)
Create a new builder that has HTTP header validation enabled or disabled.DefaultHttpHeadersFactory
DefaultHttpHeadersFactory. withValueValidation(boolean validation)
Create a new builder that has HTTP header value validation enabled or disabled.DefaultHttpHeadersFactory
DefaultHttpHeadersFactory. withValueValidator(DefaultHeaders.ValueValidator<java.lang.CharSequence> validator)
Create a new builder that with the givenDefaultHeaders.ValueValidator
.
-