Class RestServerConfiguration
- java.lang.Object
-
- org.infinispan.server.core.configuration.ProtocolServerConfiguration
-
- org.infinispan.rest.configuration.RestServerConfiguration
-
public class RestServerConfiguration extends ProtocolServerConfiguration
-
-
Field Summary
Fields Modifier and Type Field Description static AttributeDefinition<Integer>
COMPRESSION_LEVEL
static AttributeDefinition<String>
CONTEXT_PATH
static AttributeDefinition<List<io.netty.handler.codec.http.cors.CorsConfig>>
CORS_RULES
static AttributeDefinition<ExtendedHeaders>
EXTENDED_HEADERS
static AttributeDefinition<Integer>
MAX_CONTENT_LENGTH
-
Fields inherited from class org.infinispan.server.core.configuration.ProtocolServerConfiguration
ADMIN_OPERATION_HANDLER, attributes, DEFAULT_CACHE_NAME, HOST, IDLE_TIMEOUT, IGNORED_CACHES, IO_THREADS, NAME, PORT, RECV_BUF_SIZE, SEND_BUF_SIZE, ssl, START_TRANSPORT, TCP_KEEPALIVE, TCP_NODELAY, WORKER_THREADS, ZERO_CAPACITY_NODE
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static AttributeSet
attributeDefinitionSet()
String
contextPath()
ExtendedHeaders
extendedHeaders()
int
getCompressionLevel()
List<io.netty.handler.codec.http.cors.CorsConfig>
getCorsRules()
Set<String>
getIgnoredCaches()
Deprecated.UseProtocolServerConfiguration.ignoredCaches()
instead.int
maxContentLength()
String
toString()
-
Methods inherited from class org.infinispan.server.core.configuration.ProtocolServerConfiguration
adminOperationsHandler, attributes, defaultCacheName, host, idleTimeout, ignoredCaches, ioThreads, name, port, recvBufSize, sendBufSize, ssl, startTransport, tcpKeepAlive, tcpNoDelay, workerThreads, zeroCapacityNode
-
-
-
-
Field Detail
-
EXTENDED_HEADERS
public static final AttributeDefinition<ExtendedHeaders> EXTENDED_HEADERS
-
CONTEXT_PATH
public static final AttributeDefinition<String> CONTEXT_PATH
-
MAX_CONTENT_LENGTH
public static final AttributeDefinition<Integer> MAX_CONTENT_LENGTH
-
CORS_RULES
public static final AttributeDefinition<List<io.netty.handler.codec.http.cors.CorsConfig>> CORS_RULES
-
COMPRESSION_LEVEL
public static final AttributeDefinition<Integer> COMPRESSION_LEVEL
-
-
Method Detail
-
attributeDefinitionSet
public static AttributeSet attributeDefinitionSet()
-
extendedHeaders
public ExtendedHeaders extendedHeaders()
-
getIgnoredCaches
@Deprecated public Set<String> getIgnoredCaches()
Deprecated.UseProtocolServerConfiguration.ignoredCaches()
instead.
-
contextPath
public String contextPath()
-
maxContentLength
public int maxContentLength()
-
getCorsRules
public List<io.netty.handler.codec.http.cors.CorsConfig> getCorsRules()
-
getCompressionLevel
public int getCompressionLevel()
-
toString
public String toString()
- Overrides:
toString
in classProtocolServerConfiguration
-
-