Class IndexingConfigurationBuilder
java.lang.Object
org.infinispan.configuration.cache.IndexingConfigurationBuilder
- All Implemented Interfaces:
Builder<IndexingConfiguration>
,ConfigurationChildBuilder
,IndexingConfigurationChildBuilder
public class IndexingConfigurationBuilder
extends Object
implements IndexingConfigurationChildBuilder, Builder<IndexingConfiguration>
Configures indexing of entries in the cache for searching.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddIndexedEntities
(Class<?>... indexedEntities) addIndexedEntities
(String... indexedEntities) addIndexedEntity
(Class<?> indexedEntity) addIndexedEntity
(String indexedEntity) addKeyTransformer
(Class<?> keyClass, Class<?> keyTransformerClass) Registers a transformer for a key class.addProperty
(String key, String value) Deprecated, for removal: This API element is subject to removal in a future version.boolean
Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0, with no replacement.autoConfig
(boolean autoConfig) Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0 with no replacement.build()
create()
Create the configuration beanDeprecated, for removal: This API element is subject to removal in a future version.Since 10.0, custom interceptors support will be removed and only modules will be able to define interceptorsdisable()
enable()
boolean
enabled()
enabled
(boolean enabled) encoding()
protected ConfigurationBuilder
Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0.indexing()
locking()
memory()
query()
read
(IndexingConfiguration template, Combine combine) Reads the configuration from an already created configuration bean into this builder.reader()
void
reset()
Wipe out all indexing configuration settings and disable indexing.security()
setProperty
(String key, Object value) boolean
simpleCache
(boolean simpleCache) sites()
startupMode
(IndexStartupMode startupMode) storage
(IndexStorage storage) template
(boolean template) toString()
unsafe()
void
validate()
Validate the data in this builder before building the configuration beanvoid
validate
(GlobalConfiguration globalConfig) withProperties
(Properties props) writer()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.infinispan.configuration.cache.ConfigurationChildBuilder
build, clustering, customInterceptors, encoding, expiration, indexing, invocationBatching, jmxStatistics, locking, memory, persistence, query, security, simpleCache, simpleCache, sites, statistics, template, transaction, unsafe
-
Field Details
-
builder
-
-
Method Details
-
attributes
- Specified by:
attributes
in interfaceBuilder<IndexingConfiguration>
-
enabled
-
reader
- Specified by:
reader
in interfaceIndexingConfigurationChildBuilder
-
writer
- Specified by:
writer
in interfaceIndexingConfigurationChildBuilder
-
reset
public void reset()Wipe out all indexing configuration settings and disable indexing.- Specified by:
reset
in interfaceBuilder<IndexingConfiguration>
-
enable
- Specified by:
enable
in interfaceIndexingConfigurationChildBuilder
-
disable
- Specified by:
disable
in interfaceIndexingConfigurationChildBuilder
-
enabled
public boolean enabled() -
path
- Specified by:
path
in interfaceIndexingConfigurationChildBuilder
-
storage
- Specified by:
storage
in interfaceIndexingConfigurationChildBuilder
-
startupMode
- Specified by:
startupMode
in interfaceIndexingConfigurationChildBuilder
-
addKeyTransformer
public IndexingConfigurationBuilder addKeyTransformer(Class<?> keyClass, Class<?> keyTransformerClass) Registers a transformer for a key class.- Specified by:
addKeyTransformer
in interfaceIndexingConfigurationChildBuilder
- Parameters:
keyClass
- the class of the keykeyTransformerClass
- the class of the org.infinispan.query.Transformer that handles this key type- Returns:
this
, for method chaining
-
addProperty
@Deprecated(forRemoval=true) public IndexingConfigurationBuilder addProperty(String key, String value) Deprecated, for removal: This API element is subject to removal in a future version.Defines a single property. Can be used multiple times to define all needed properties, but the full set is overridden bywithProperties(Properties)
.These properties are passed directly to the embedded Hibernate Search engine, so for the complete and up to date documentation about available properties refer to the the Hibernate Search reference of the version used by Infinispan Query.
- Parameters:
key
- Property keyvalue
- Property value- Returns:
this
, for method chaining- See Also:
-
setProperty
@Deprecated(forRemoval=true) public IndexingConfigurationBuilder setProperty(String key, Object value) Deprecated, for removal: This API element is subject to removal in a future version.Defines a single value. Can be used multiple times to define all needed property values, but the full set is overridden bywithProperties(Properties)
.These properties are passed directly to the embedded Hibernate Search engine, so for the complete and up to date documentation about available properties refer to the the Hibernate Search reference of the version used by Infinispan Query.
- Parameters:
key
- Property keyvalue
- Property value- Returns:
this
, for method chaining- See Also:
-
withProperties
Deprecated, for removal: This API element is subject to removal in a future version.The Query engine relies on properties for configuration.These properties are passed directly to the embedded Hibernate Search engine, so for the complete and up to date documentation about available properties refer to the Hibernate Search reference of the version you're using with Infinispan Query.
- Parameters:
props
- the properties- Returns:
this
, for method chaining- See Also:
-
index
Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0. This configuration will be removed in next major version as the index mode is calculated automatically.Indicates indexing mode -
autoConfig
Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0 with no replacement.When enabled, applies to properties default configurations based on the cache type- Parameters:
autoConfig
- boolean- Returns:
this
, for method chaining
-
autoConfig
Deprecated, for removal: This API element is subject to removal in a future version.Since 11.0, with no replacement. -
addIndexedEntity
- Specified by:
addIndexedEntity
in interfaceIndexingConfigurationChildBuilder
-
addIndexedEntities
- Specified by:
addIndexedEntities
in interfaceIndexingConfigurationChildBuilder
-
addIndexedEntity
- Specified by:
addIndexedEntity
in interfaceIndexingConfigurationChildBuilder
-
addIndexedEntities
- Specified by:
addIndexedEntities
in interfaceIndexingConfigurationChildBuilder
-
validate
public void validate()Description copied from interface:Builder
Validate the data in this builder before building the configuration bean- Specified by:
validate
in interfaceBuilder<IndexingConfiguration>
-
validate
- Specified by:
validate
in interfaceConfigurationChildBuilder
-
create
Description copied from interface:Builder
Create the configuration bean- Specified by:
create
in interfaceBuilder<IndexingConfiguration>
- Returns:
-
read
Description copied from interface:Builder
Reads the configuration from an already created configuration bean into this builder. Returns an appropriate builder to allow fluent configuration- Specified by:
read
in interfaceBuilder<IndexingConfiguration>
- Parameters:
template
- the configuration from which to "clone" this config if needed.combine
- the way attributes and children of this instance and the template should be combined.
-
toString
-
template
- Specified by:
template
in interfaceConfigurationChildBuilder
-
simpleCache
- Specified by:
simpleCache
in interfaceConfigurationChildBuilder
-
simpleCache
public boolean simpleCache()- Specified by:
simpleCache
in interfaceConfigurationChildBuilder
-
clustering
- Specified by:
clustering
in interfaceConfigurationChildBuilder
-
customInterceptors
Deprecated, for removal: This API element is subject to removal in a future version.Since 10.0, custom interceptors support will be removed and only modules will be able to define interceptors- Specified by:
customInterceptors
in interfaceConfigurationChildBuilder
-
encoding
- Specified by:
encoding
in interfaceConfigurationChildBuilder
-
expiration
- Specified by:
expiration
in interfaceConfigurationChildBuilder
-
query
- Specified by:
query
in interfaceConfigurationChildBuilder
-
indexing
- Specified by:
indexing
in interfaceConfigurationChildBuilder
-
invocationBatching
- Specified by:
invocationBatching
in interfaceConfigurationChildBuilder
-
statistics
- Specified by:
statistics
in interfaceConfigurationChildBuilder
-
persistence
- Specified by:
persistence
in interfaceConfigurationChildBuilder
-
locking
- Specified by:
locking
in interfaceConfigurationChildBuilder
-
security
- Specified by:
security
in interfaceConfigurationChildBuilder
-
transaction
- Specified by:
transaction
in interfaceConfigurationChildBuilder
-
unsafe
- Specified by:
unsafe
in interfaceConfigurationChildBuilder
-
sites
- Specified by:
sites
in interfaceConfigurationChildBuilder
-
memory
- Specified by:
memory
in interfaceConfigurationChildBuilder
-
getBuilder
-
build
- Specified by:
build
in interfaceConfigurationChildBuilder
-
writer()
andreader()
to define indexing behavior.