Class IndexingConfigurationBuilder
- java.lang.Object
-
- org.infinispan.configuration.cache.IndexingConfigurationBuilder
-
- All Implemented Interfaces:
BaseConfigurationInfo
,Builder<IndexingConfiguration>
,ConfigurationBuilderInfo
,ConfigurationChildBuilder
public class IndexingConfigurationBuilder extends Object implements Builder<IndexingConfiguration>, ConfigurationBuilderInfo
Configures indexing of entries in the cache for searching.
-
-
Field Summary
Fields Modifier and Type Field Description protected ConfigurationBuilder
builder
-
Method Summary
-
Methods inherited from interface org.infinispan.commons.configuration.ConfigurationBuilderInfo
getBuilderInfo, getChildrenInfo, getNewBuilderInfo
-
Methods inherited from interface org.infinispan.configuration.cache.ConfigurationChildBuilder
jmxStatistics
-
-
-
-
Field Detail
-
builder
protected final ConfigurationBuilder builder
-
-
Method Detail
-
enabled
public boolean enabled()
-
addKeyTransformer
public IndexingConfigurationBuilder addKeyTransformer(Class<?> keyClass, Class<?> keyTransformerClass)
Registers a transformer for a key class.- 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
public IndexingConfigurationBuilder addProperty(String key, String value)
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:
- Hibernate Search
-
setProperty
public IndexingConfigurationBuilder setProperty(String key, Object value)
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:
- Hibernate Search
-
withProperties
public IndexingConfigurationBuilder withProperties(Properties props)
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:
- Hibernate Search
-
index
public IndexingConfigurationBuilder index(Index index)
Indicates indexing mode
-
autoConfig
public IndexingConfigurationBuilder autoConfig(boolean autoConfig)
When enabled, applies to properties default configurations based on the cache type- Parameters:
autoConfig
- boolean- Returns:
this
, for method chaining
-
autoConfig
public boolean autoConfig()
-
addIndexedEntity
public IndexingConfigurationBuilder addIndexedEntity(Class<?> indexedEntity)
-
addIndexedEntities
public IndexingConfigurationBuilder addIndexedEntities(Class<?>... indexedEntities)
-
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
public void validate(GlobalConfiguration globalConfig)
- Specified by:
validate
in interfaceConfigurationChildBuilder
-
create
public IndexingConfiguration create()
Description copied from interface:Builder
Create the configuration bean- Specified by:
create
in interfaceBuilder<IndexingConfiguration>
- Returns:
-
read
public IndexingConfigurationBuilder read(IndexingConfiguration template)
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.
-
getElementDefinition
public org.infinispan.commons.configuration.elements.ElementDefinition getElementDefinition()
- Specified by:
getElementDefinition
in interfaceBaseConfigurationInfo
- Returns:
- the
ElementDefinition
of the configuration.
-
toString
public String toString()
-
attributes
public org.infinispan.commons.configuration.attributes.AttributeSet attributes()
- Specified by:
attributes
in interfaceBaseConfigurationInfo
- Returns:
- the
AttributeSet
declared by the configuration.
-
template
public ConfigurationChildBuilder template(boolean template)
- Specified by:
template
in interfaceConfigurationChildBuilder
-
simpleCache
public ConfigurationChildBuilder simpleCache(boolean simpleCache)
- Specified by:
simpleCache
in interfaceConfigurationChildBuilder
-
simpleCache
public boolean simpleCache()
- Specified by:
simpleCache
in interfaceConfigurationChildBuilder
-
clustering
public ClusteringConfigurationBuilder clustering()
- Specified by:
clustering
in interfaceConfigurationChildBuilder
-
customInterceptors
@Deprecated public CustomInterceptorsConfigurationBuilder customInterceptors()
Deprecated.Since 10.0, custom interceptors support will be removed and only modules will be able to define interceptors- Specified by:
customInterceptors
in interfaceConfigurationChildBuilder
-
encoding
public EncodingConfigurationBuilder encoding()
- Specified by:
encoding
in interfaceConfigurationChildBuilder
-
expiration
public ExpirationConfigurationBuilder expiration()
- Specified by:
expiration
in interfaceConfigurationChildBuilder
-
indexing
public IndexingConfigurationBuilder indexing()
- Specified by:
indexing
in interfaceConfigurationChildBuilder
-
invocationBatching
public InvocationBatchingConfigurationBuilder invocationBatching()
- Specified by:
invocationBatching
in interfaceConfigurationChildBuilder
-
statistics
public StatisticsConfigurationBuilder statistics()
- Specified by:
statistics
in interfaceConfigurationChildBuilder
-
persistence
public PersistenceConfigurationBuilder persistence()
- Specified by:
persistence
in interfaceConfigurationChildBuilder
-
locking
public LockingConfigurationBuilder locking()
- Specified by:
locking
in interfaceConfigurationChildBuilder
-
security
public SecurityConfigurationBuilder security()
- Specified by:
security
in interfaceConfigurationChildBuilder
-
transaction
public TransactionConfigurationBuilder transaction()
- Specified by:
transaction
in interfaceConfigurationChildBuilder
-
unsafe
public UnsafeConfigurationBuilder unsafe()
- Specified by:
unsafe
in interfaceConfigurationChildBuilder
-
sites
public SitesConfigurationBuilder sites()
- Specified by:
sites
in interfaceConfigurationChildBuilder
-
memory
public MemoryConfigurationBuilder memory()
- Specified by:
memory
in interfaceConfigurationChildBuilder
-
getBuilder
protected ConfigurationBuilder getBuilder()
-
build
public Configuration build()
- Specified by:
build
in interfaceConfigurationChildBuilder
-
-