Class RestStoreConfiguration
- java.lang.Object
-
- org.infinispan.configuration.cache.AbstractStoreConfiguration
-
- org.infinispan.persistence.rest.configuration.RestStoreConfiguration
-
- All Implemented Interfaces:
StoreConfiguration
public class RestStoreConfiguration extends AbstractStoreConfiguration
RestStoreConfiguration.- Since:
- 6.0
- Author:
- Tristan Tarrant
-
-
Field Summary
Fields Modifier and Type Field Description static AttributeDefinition<Boolean>
APPEND_CACHE_NAME_TO_PATH
static AttributeDefinition<String>
HOST
static AttributeDefinition<String>
KEY2STRING_MAPPER
static AttributeDefinition<Integer>
MAX_CONTENT_LENGTH
static AttributeDefinition<String>
METADATA_HELPER
static AttributeDefinition<String>
PATH
static AttributeDefinition<Integer>
PORT
static AttributeDefinition<Boolean>
RAW_VALUES
-
Fields inherited from class org.infinispan.configuration.cache.AbstractStoreConfiguration
attributes, FETCH_PERSISTENT_STATE, IGNORE_MODIFICATIONS, MAX_BATCH_SIZE, PRELOAD, PROPERTIES, PURGE_ON_STARTUP, SEGMENTED, SHARED, TRANSACTIONAL
-
-
Constructor Summary
Constructors Constructor Description RestStoreConfiguration(AttributeSet attributes, AsyncStoreConfiguration async, SingletonStoreConfiguration singletonStore, ConnectionPoolConfiguration connectionPool)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
appendCacheNameToPath()
static AttributeSet
attributeDefinitionSet()
ConnectionPoolConfiguration
connectionPool()
String
host()
String
key2StringMapper()
int
maxContentLength()
String
metadataHelper()
String
path()
int
port()
boolean
rawValues()
String
toString()
-
Methods inherited from class org.infinispan.configuration.cache.AbstractStoreConfiguration
async, attributes, equals, fetchPersistentState, hashCode, ignoreModifications, maxBatchSize, preload, properties, purgeOnStartup, segmented, shared, singletonStore, transactional
-
-
-
-
Field Detail
-
KEY2STRING_MAPPER
public static final AttributeDefinition<String> KEY2STRING_MAPPER
-
METADATA_HELPER
public static final AttributeDefinition<String> METADATA_HELPER
-
HOST
public static final AttributeDefinition<String> HOST
-
PORT
public static final AttributeDefinition<Integer> PORT
-
PATH
public static final AttributeDefinition<String> PATH
-
APPEND_CACHE_NAME_TO_PATH
public static final AttributeDefinition<Boolean> APPEND_CACHE_NAME_TO_PATH
-
RAW_VALUES
public static final AttributeDefinition<Boolean> RAW_VALUES
-
MAX_CONTENT_LENGTH
public static final AttributeDefinition<Integer> MAX_CONTENT_LENGTH
-
-
Constructor Detail
-
RestStoreConfiguration
public RestStoreConfiguration(AttributeSet attributes, AsyncStoreConfiguration async, SingletonStoreConfiguration singletonStore, ConnectionPoolConfiguration connectionPool)
-
-
Method Detail
-
attributeDefinitionSet
public static AttributeSet attributeDefinitionSet()
-
connectionPool
public ConnectionPoolConfiguration connectionPool()
-
key2StringMapper
public String key2StringMapper()
-
metadataHelper
public String metadataHelper()
-
host
public String host()
-
port
public int port()
-
path
public String path()
-
appendCacheNameToPath
public boolean appendCacheNameToPath()
-
rawValues
public boolean rawValues()
-
maxContentLength
public int maxContentLength()
-
toString
public String toString()
- Overrides:
toString
in classAbstractStoreConfiguration
-
-