Uses of Interface
org.apache.camel.builder.component.dsl.JettyComponentBuilderFactory.JettyComponentBuilder
Packages that use JettyComponentBuilderFactory.JettyComponentBuilder
-
Uses of JettyComponentBuilderFactory.JettyComponentBuilder in org.apache.camel.builder.component
Methods in org.apache.camel.builder.component that return JettyComponentBuilderFactory.JettyComponentBuilderModifier and TypeMethodDescriptionComponentsBuilderFactory.jetty()Jetty (camel-jetty) Expose HTTP endpoints using Jetty 12. -
Uses of JettyComponentBuilderFactory.JettyComponentBuilder in org.apache.camel.builder.component.dsl
Classes in org.apache.camel.builder.component.dsl that implement JettyComponentBuilderFactory.JettyComponentBuilderModifier and TypeClassDescriptionstatic classMethods in org.apache.camel.builder.component.dsl that return JettyComponentBuilderFactory.JettyComponentBuilderModifier and TypeMethodDescriptionJettyComponentBuilderFactory.JettyComponentBuilder.allowJavaSerializedObject(boolean allowJavaSerializedObject) Whether to allow java serialization when a request uses context-type=application/x-java-serialized-object.JettyComponentBuilderFactory.JettyComponentBuilder.autowiredEnabled(boolean autowiredEnabled) Whether autowiring is enabled.JettyComponentBuilderFactory.JettyComponentBuilder.bridgeErrorHandler(boolean bridgeErrorHandler) Allows for bridging the consumer to the Camel routing Error Handler, which mean any exceptions (if possible) occurred while the Camel consumer is trying to pickup incoming messages, or the likes, will now be processed as a message and handled by the routing Error Handler.JettyComponentBuilderFactory.JettyComponentBuilder.continuationTimeout(Long continuationTimeout) Allows to set a timeout in millis when using Jetty as consumer (server).JettyComponentBuilderFactory.JettyComponentBuilder.enableJmx(boolean enableJmx) If this option is true, Jetty JMX support will be enabled for this endpoint.JettyComponentBuilderFactory.JettyComponentBuilder.errorHandler(org.eclipse.jetty.server.handler.ErrorHandler errorHandler) This option is used to set the ErrorHandler that Jetty server uses.JettyComponentBuilderFactory.JettyComponentBuilder.fileSizeThreshold(int fileSizeThreshold) The size threshold after which files will be written to disk for multipart/form-data requests.JettyComponentBuilderFactory.JettyComponentBuilder.filesLocation(String filesLocation) The directory location where files will be store for multipart/form-data requests.JettyComponentBuilderFactory.JettyComponentBuilder.headerFilterStrategy(org.apache.camel.spi.HeaderFilterStrategy headerFilterStrategy) To use a custom org.apache.camel.spi.HeaderFilterStrategy to filter header to and from Camel message.JettyComponentBuilderFactory.JettyComponentBuilder.httpBinding(org.apache.camel.http.common.HttpBinding httpBinding) Not to be used - use JettyHttpBinding instead.JettyComponentBuilderFactory.JettyComponentBuilder.httpConfiguration(org.apache.camel.http.common.HttpConfiguration httpConfiguration) Jetty component does not use HttpConfiguration.JettyComponentBuilderFactory.jetty()Jetty (camel-jetty) Expose HTTP endpoints using Jetty 12.Specifies the location of the Java keystore file, which contains the Jetty server's own X.509 certificate in a key entry.JettyComponentBuilderFactory.JettyComponentBuilder.maxFileSize(long maxFileSize) The maximum size allowed for uploaded files. -1 means no limit.JettyComponentBuilderFactory.JettyComponentBuilder.maxRequestSize(long maxRequestSize) The maximum size allowed for multipart/form-data requests. -1 means no limit.JettyComponentBuilderFactory.JettyComponentBuilder.maxThreads(Integer maxThreads) To set a value for maximum number of threads in server thread pool.JettyComponentBuilderFactory.JettyComponentBuilder.mbContainer(org.eclipse.jetty.jmx.MBeanContainer mbContainer) To use a existing configured org.eclipse.jetty.jmx.MBeanContainer if JMX is enabled that Jetty uses for registering mbeans.JettyComponentBuilderFactory.JettyComponentBuilder.minThreads(Integer minThreads) To set a value for minimum number of threads in server thread pool.JettyComponentBuilderFactory.JettyComponentBuilder.muteException(boolean muteException) If enabled and an Exchange failed processing on the consumer side the response's body won't contain the exception's stack trace.To use a http proxy to configure the hostname.To use a http proxy to configure the port number.JettyComponentBuilderFactory.JettyComponentBuilder.requestBufferSize(Integer requestBufferSize) Allows to configure a custom value of the request buffer size on the Jetty connectors.JettyComponentBuilderFactory.JettyComponentBuilder.requestHeaderSize(Integer requestHeaderSize) Allows to configure a custom value of the request header size on the Jetty connectors.JettyComponentBuilderFactory.JettyComponentBuilder.responseBufferSize(Integer responseBufferSize) Allows to configure a custom value of the response buffer size on the Jetty connectors.JettyComponentBuilderFactory.JettyComponentBuilder.responseHeaderSize(Integer responseHeaderSize) Allows to configure a custom value of the response header size on the Jetty connectors.JettyComponentBuilderFactory.JettyComponentBuilder.sendServerVersion(boolean sendServerVersion) If the option is true, jetty will send the server header with the jetty version information to the client which sends the request.JettyComponentBuilderFactory.JettyComponentBuilder.socketConnectorProperties(Map<String, Object> socketConnectorProperties) A map which contains general HTTP connector properties.JettyComponentBuilderFactory.JettyComponentBuilder.socketConnectors(Map<Integer, org.eclipse.jetty.server.Connector> socketConnectors) A map which contains per port number specific HTTP connectors.JettyComponentBuilderFactory.JettyComponentBuilder.sslContextParameters(org.apache.camel.support.jsse.SSLContextParameters sslContextParameters) To configure security using SSLContextParameters.JettyComponentBuilderFactory.JettyComponentBuilder.sslKeyPassword(String sslKeyPassword) The key password, which is used to access the certificate's key entry in the keystore (this is the same password that is supplied to the keystore command's -keypass option).JettyComponentBuilderFactory.JettyComponentBuilder.sslPassword(String sslPassword) The ssl password, which is required to access the keystore file (this is the same password that is supplied to the keystore command's -storepass option).JettyComponentBuilderFactory.JettyComponentBuilder.sslSocketConnectorProperties(Map<String, Object> sslSocketConnectorProperties) A map which contains general SSL connector properties.JettyComponentBuilderFactory.JettyComponentBuilder.sslSocketConnectors(Map<Integer, org.eclipse.jetty.server.Connector> sslSocketConnectors) A map which contains per port number specific SSL connectors.JettyComponentBuilderFactory.JettyComponentBuilder.threadPool(org.eclipse.jetty.util.thread.ThreadPool threadPool) To use a custom thread pool for the server.JettyComponentBuilderFactory.JettyComponentBuilder.useContinuation(boolean useContinuation) Whether or not to use Jetty continuations for the Jetty Server.JettyComponentBuilderFactory.JettyComponentBuilder.useGlobalSslContextParameters(boolean useGlobalSslContextParameters) Enable usage of global SSL context parameters.JettyComponentBuilderFactory.JettyComponentBuilder.useXForwardedForHeader(boolean useXForwardedForHeader) To use the X-Forwarded-For header in HttpServletRequest.getRemoteAddr.