org.apache.camel.component.netty.http.handlers.HttpServerChannelHandler
to handle an incoming HttpRequest
when you use multiple routes on the same
port.HttpRequest
as parameter types.HttpRequest
as parameter types.HttpMethod
to use to call the remote server, often either its GET or POST.ContextPathMatcher
which supports the matchOnUriPrefix option.NettyHttpBinding
.NettySharedHttpServer
to make sharing Netty server in Camel applications easier.ChannelHandler
HttpServerConsumerChannelFactory
to use.HttpContent
.NettyServerBootstrapFactory
to use.Subject
org.apache.camel.component.netty.handlers.ClientChannelHandler
that handles the response combing
back from the HTTP server, called by this client.ClientInitializerFactory
for the Netty HTTP client.Principal
.ServerChannelHandler
that handles the incoming HTTP requests and routes
the received message in Camel.ChannelHandler
bound to a given Netty port.ServerInitializerFactory
for the Netty HTTP server.HttpServerInitializerFactory
which keeps a list of handlers, and delegates to the
target handler based on the http context path in the incoming request.HttpServerInitializerFactory
for a shared Netty HTTP server.SecurityAuthenticator
implementation.Principal
on this realm.ChannelBuffer
which is exposed as an InputStream
which makes it very
easy to use by Camel and other Camel components.Message
api.NettyConsumer
NettyEndpoint
HeaderFilterStrategy
used when binding with NettyHttpBinding
.Message
.NettyProducer
.NettyHttpConsumer
.HttpRequest
to Camel headers as a Map
.HttpResponse
to Camel headers as a Map
.org.apache.camel.component.netty.http.ContextPathMatcher
that supports the Rest DSL.org.apache.camel.component.netty.http.NettyHttpBinding
that supports the Rest DSL.SecurityAuthenticator
allows to plugin custom authenticators,
such as JAAS based or custom implementations.SecurityAuthenticator
.CallbackHandler
that provides the username and password.SecurityConstraint
which can be used to define a set of mappings to
as constraints.ClassResolver
for loading resource on the classpath.SecurityAuthenticator
to use for authenticating the HttpPrincipal
.SecurityConstraint
to use for checking if a web resource is restricted or not
By default this is null, which means all resources is restricted.HttpRequest
to Camel Message
.HttpResponse
to Camel Message
.Message
to Netty HttpRequest
.Message
to Netty HttpResponse
.Apache Camel