Class VertxPlatformHttpServerConfiguration
- java.lang.Object
-
- org.apache.camel.component.platform.http.vertx.VertxPlatformHttpServerConfiguration
-
public class VertxPlatformHttpServerConfiguration extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
VertxPlatformHttpServerConfiguration.BodyHandler
static class
VertxPlatformHttpServerConfiguration.Cors
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT_BIND_HOST
static int
DEFAULT_BIND_PORT
static String
DEFAULT_PATH
-
Constructor Summary
Constructors Constructor Description VertxPlatformHttpServerConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method 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)
-
-
-
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
-
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)
-
-