public class VertxPlatformHttpServerConfiguration extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
VertxPlatformHttpServerConfiguration.BodyHandler |
static class |
VertxPlatformHttpServerConfiguration.Cors |
| Modifier and Type | Field and Description |
|---|---|
static String |
DEFAULT_BIND_HOST |
static int |
DEFAULT_BIND_PORT |
static String |
DEFAULT_PATH |
| Constructor and Description |
|---|
VertxPlatformHttpServerConfiguration() |
| Modifier and Type | Method and Description |
|---|---|
String |
getBindHost() |
int |
getBindPort() |
VertxPlatformHttpServerConfiguration.BodyHandler |
getBodyHandler() |
VertxPlatformHttpServerConfiguration.Cors |
getCors() |
BigInteger |
getMaxBodySize() |
String |
getPath() |
org.apache.camel.support.jsse.SSLContextParameters |
getSslContextParameters() |
boolean |
isUseGlobalSslContextParameters() |
void |
setBindHost(String bindHost) |
void |
setBindPort(int bindPort) |
void |
setBodyHandler(VertxPlatformHttpServerConfiguration.BodyHandler bodyHandler) |
void |
setCors(VertxPlatformHttpServerConfiguration.Cors corsConfiguration) |
void |
setMaxBodySize(BigInteger maxBodySize) |
void |
setPath(String path) |
void |
setSslContextParameters(org.apache.camel.support.jsse.SSLContextParameters sslContextParameters) |
void |
setUseGlobalSslContextParameters(boolean useGlobalSslContextParameters) |
public static final String DEFAULT_BIND_HOST
public static final int DEFAULT_BIND_PORT
public static final String DEFAULT_PATH
public VertxPlatformHttpServerConfiguration()
public String getBindHost()
public void setBindHost(String bindHost)
public int getBindPort()
public void setBindPort(int bindPort)
public String getPath()
public void setPath(String path)
public BigInteger getMaxBodySize()
public void setMaxBodySize(BigInteger maxBodySize)
public org.apache.camel.support.jsse.SSLContextParameters getSslContextParameters()
public void setSslContextParameters(org.apache.camel.support.jsse.SSLContextParameters sslContextParameters)
public boolean isUseGlobalSslContextParameters()
public void setUseGlobalSslContextParameters(boolean useGlobalSslContextParameters)
public VertxPlatformHttpServerConfiguration.Cors getCors()
public void setCors(VertxPlatformHttpServerConfiguration.Cors corsConfiguration)
public VertxPlatformHttpServerConfiguration.BodyHandler getBodyHandler()
public void setBodyHandler(VertxPlatformHttpServerConfiguration.BodyHandler bodyHandler)
Apache Camel