Class VertxPlatformHttpServerConfiguration
- java.lang.Object
-
- org.apache.camel.component.platform.http.vertx.VertxPlatformHttpServerConfiguration
-
public class VertxPlatformHttpServerConfiguration extends Object
HTTP server configuration
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classVertxPlatformHttpServerConfiguration.BodyHandlerstatic classVertxPlatformHttpServerConfiguration.Cors
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_BIND_HOSTstatic intDEFAULT_BIND_PORTstatic StringDEFAULT_PATH
-
Constructor Summary
Constructors Constructor Description VertxPlatformHttpServerConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBindHost()intgetBindPort()VertxPlatformHttpServerConfiguration.BodyHandlergetBodyHandler()VertxPlatformHttpServerConfiguration.CorsgetCors()StringgetHost()BigIntegergetMaxBodySize()StringgetPath()intgetPort()org.apache.camel.support.jsse.SSLContextParametersgetSslContextParameters()booleanisUseGlobalSslContextParameters()voidsetBindHost(String bindHost)voidsetBindPort(int bindPort)voidsetBodyHandler(VertxPlatformHttpServerConfiguration.BodyHandler bodyHandler)voidsetCors(VertxPlatformHttpServerConfiguration.Cors corsConfiguration)voidsetHost(String host)voidsetMaxBodySize(BigInteger maxBodySize)voidsetPath(String path)voidsetPort(int port)voidsetSslContextParameters(org.apache.camel.support.jsse.SSLContextParameters sslContextParameters)voidsetUseGlobalSslContextParameters(boolean useGlobalSslContextParameters)
-
-
-
Field Detail
-
DEFAULT_BIND_HOST
public static final String DEFAULT_BIND_HOST
- See Also:
- Constant Field Values
-
DEFAULT_BIND_PORT
public static final int DEFAULT_BIND_PORT
- See Also:
- Constant Field Values
-
DEFAULT_PATH
public static final String DEFAULT_PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getPort
public int getPort()
-
setPort
public void setPort(int port)
-
setHost
public void setHost(String host)
-
getHost
public String getHost()
-
getBindHost
public String getBindHost()
-
setBindHost
public void setBindHost(String bindHost)
-
getBindPort
public int getBindPort()
-
setBindPort
public void setBindPort(int bindPort)
-
getPath
public String getPath()
-
setPath
public void setPath(String path)
-
getMaxBodySize
public BigInteger getMaxBodySize()
-
setMaxBodySize
public void setMaxBodySize(BigInteger maxBodySize)
-
getSslContextParameters
public org.apache.camel.support.jsse.SSLContextParameters getSslContextParameters()
-
setSslContextParameters
public void setSslContextParameters(org.apache.camel.support.jsse.SSLContextParameters sslContextParameters)
-
isUseGlobalSslContextParameters
public boolean isUseGlobalSslContextParameters()
-
setUseGlobalSslContextParameters
public void setUseGlobalSslContextParameters(boolean useGlobalSslContextParameters)
-
getCors
public VertxPlatformHttpServerConfiguration.Cors getCors()
-
setCors
public void setCors(VertxPlatformHttpServerConfiguration.Cors corsConfiguration)
-
getBodyHandler
public VertxPlatformHttpServerConfiguration.BodyHandler getBodyHandler()
-
setBodyHandler
public void setBodyHandler(VertxPlatformHttpServerConfiguration.BodyHandler bodyHandler)
-
-